simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / depr-copy4.C
blob42852a7055847ee27ab2c1a2b8e4c321734088aa
1 // PR c++/94492
2 // { dg-additional-options -Wdeprecated-copy }
4 #pragma GCC diagnostic push
5 #pragma GCC diagnostic ignored "-Wdeprecated-copy"
6 struct expr
8     int a, b;
9     expr& operator=(const expr&) { return *this; }
11 #pragma GCC diagnostic pop
13 expr foo(expr e)
15     return e;