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