2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / ubsan / return-5.C
blob2956c33a0945937f1180a1710586837a5eed3adb
1 // PR c++/77722
2 // { dg-do run }
3 // { dg-options "-fsanitize=return -w" }
4 // { dg-shouldfail "ubsan" }
6 int
7 foo ()
9   int a = 5;
12 int
13 main ()
15   foo ();
16   return 0;
19 // { dg-output "execution reached the end of a value-returning function without returning a value" }