blob: 6cd06e9840c039c4dbb56b50565f5d150e74ea9f [file] [log] [blame]
struct S {
arr : array<i32>;
};
[[binding(0), group(0)]] var<storage, read_write> s : S;
[[stage(compute), workgroup_size(1)]]
fn main() {
_ = &(s);
}