[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Parser / method-def-in-class.m
bloba847a4387a938de438da06df77152dadba84ede1
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 @interface A
4 -(id) f0 { // expected-error {{expected ';' after method prototype}}
5   assert(0);
7 @end
9 @interface C
10 - (id) f0 { // expected-error {{expected ';' after method prototype}}
11     assert(0);
13 @end