1// RUN: %clangxx -fsanitize=return %s -O3 -o %t && %run %t 2>&1 | FileCheck %s
2
3// CHECK: missing_return.cpp:4:5: runtime error: execution reached the end of a value-returning function without returning a value
4int f() {
5}
6
7int main(int, char **argv) {
8  return f();
9}
10