blob: 99d1abba516f41263e66992d386168a8ead6edcb [file] [log] [blame]
struct S {
f : f32,
}
@group(0) @binding(0) var<storage, read> arr : array<S>;
@stage(compute) @workgroup_size(1)
fn main() {
let len = arrayLength(&(arr));
}