blob: 4478746a9e05b86ff09f64984a47523ad87a6285 [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);
}