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