blob: ad3cde32dda7fe4c3d5daa32c5a1f18fd4ffeed0 [file] [log] [blame]
struct Inner {
f : f32,
}
struct S {
inner : Inner,
}
@group(0) @binding(0) var<storage, read> in : S;
@group(0) @binding(1) var<storage, read_write> out : S;
@compute @workgroup_size(1)
fn main() {
out = in;
}