1 2 3 4 5 6 7 8 9 10 11 12 13
// PR c++/15461 struct A { int i; }; inline A foo () { int j = 1; A a = { j }; return a; } A tv = foo();