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