Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.24.0/tests/lit-tests/2148.ispc
2025-05-18 13:04:45 +08:00

12 lines
175 B
Plaintext

//; RUN: %{ispc} %s --target=host -o %t.o --nostdlib
// Check that we don't fail in parser.
struct S {
float d2;
};
export void foo(uniform S& dst) {
dst.d2 = 1;
}