blob: 6565fc16caf837db14bc7d37476261502eebe12b [file] [log] [blame]
struct a {
b : i32;
};
struct _a {
_b : i32;
};
fn f() {
let c = _a();
let d = c._b;
}