Rebase.
[official-gcc.git] / gcc / testsuite / g++.dg / ubsan / cxx11-shift-1.C
blob23a7b154d00f15c64f8ee088f73ab1c508db26bb
1 /* { dg-do run } */
2 /* { dg-options "-fsanitize=shift -w -fno-sanitize-recover -std=c++11" } */
4 int
5 main (void)
7   int a = 1;
8   a <<= 31;
9   return 0;