Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / ubsan / pr105093.C
blob49f75ed69cf80fe93956d9d5f0abefa24274aa85
1 // PR sanitizer/105093
2 // { dg-do compile }
3 // { dg-options "-O2 -fsanitize=undefined -Wno-volatile" }
5 struct X { X (); ~X (); };
7 volatile X
8 foo ()
10   X x;
11   return x;