brintos

brintos / llvm-project-archived public Read only

0
0
Text · 249 B · 29627a7 Raw
10 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s -Wmissing-noreturn -Wreturn-type -Werror=return-type2 3struct rdar8875247 {4  ~rdar8875247 ();5};6 7int rdar8875247_test() {8  rdar8875247 f;9} // expected-error{{non-void function does not return a value}}10