Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-pass
#![allow(unused_braces)]
#![allow(unused_assignments)]
// Make sure that the constructor args are codegened for zero-sized tuple structs
struct Foo(());
fn main() {
let mut a = 1;
Foo({ a = 2 });
assert_eq!(a, 2);
}