2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / ubsan / return-1.C
blob4e24db0c2a773fe77bd77cdf3cdaaf73bc3b365f
1 // { dg-do run }
2 // { dg-options "-fsanitize=return -Wno-return-type" }
3 // { dg-shouldfail "ubsan" }
5 struct S { S (); ~S (); };
7 S::S () {}
8 S::~S () {}
10 int
11 foo (int x)
13   S a;
14   {
15     S b;
16     if (x)
17       return 1;
18   }
21 int
22 main ()
24   foo (0);
27 // { dg-output "execution reached the end of a value-returning function without returning a value" }