2018-10-23 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / expr / volatile1.C
blob712c9e0fbdde40456a2a6e70cdc8635c0cf1a2e8
1 // PR c++/23167
3 struct dom
5   static int tostr();
6   void eval_old() volatile{tostr();}
7   ~dom() throw();
8 };