blob: 72d32ba509be0dd9a49d7322d36912a94c13d275 [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));
}