brintos

brintos / llvm-project-archived public Read only

0
0
Text · 284 B · c7b6115 Raw
14 lines · plain
1// RUN: %clang_cc1 %s -fsyntax-only -fobjc-exceptions -verify -Wreturn-type -Wmissing-noreturn -Werror=return-type2 3id f(id self) {4} // expected-error {{non-void function does not return a value}}5 6id f2(id self) {7  @try {8    @throw (id)0;9  } @catch (id) {10  }11  return (id)0;12}13 14