Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / g++.dg / opt / compound1.C
blobcf81e69808986bbe17eaaef5fd339134231bc983
1 // PR c++/33709
2 // { dg-do compile }
3 // { dg-options "-O2" }
5 class S {
6   virtual void foo ();
7 };
8 struct T {
9   S *s;
10   void bar (unsigned x) { s = (new S[1]) - x; }