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