1 // { dg-do assemble  }
2 
3 struct Foo {
4   Foo (int);
5 };
6 
7 int bar (Foo);
8 
9 int x = bar (3);
10