blob: c27b14981b6ee5819faa06ce49e46db814d64699 [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> s : i32;
struct a {
b : i32,
}
struct a__ {
b__ : i32,
}
@compute @workgroup_size(1)
fn f() {
let c = a__();
let d = c.b__;
s = (c.b__ + d);
}