Fix PR c++/69139 (deduction failure with trailing return type)
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist73.C
blobde9748d8b902ff9c6fb1ed75e19fac63e2016c47
1 // PR c++/57682
2 // { dg-do compile { target c++11 } }
4 struct Class
6   Class (int func)
7   try
8   : f { func }  { }
9   catch ( ... ) { }
11 private:
12   int f;