blob: 9b7d0494f50f13458a9349d06dc98aa6ec7d766c [file] [log] [blame]
struct S {
a : array<i32>;
}
[[group(0), binding(0)]] var<storage, read> G : S;
[[stage(compute), workgroup_size(1)]]
fn main() {
let l1 : u32 = arrayLength(&(G.a));
}