Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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;
}