blob: e3dff0baad1c348b1cd9220dcbe9a459e9d15981 [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 p = &G.a;
let p2 = p;
let l1 : u32 = arrayLength(p2);
}