Files
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;
}