(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ubsan/
return-6.C
// PR c++/77722
// { dg-do run }
// { dg-options "-fsanitize=return -w" }
// { dg-shouldfail "ubsan" }

int
foo ()
{
  int a = 5;
  int b = 5;
}

int
main ()
{
  foo ();
  return 0;
}

// { dg-output "execution reached the end of a value-returning function without returning a value" }