blob: 22899ad08b13ee7f746161ca867da2b2637db5fb [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);
}