[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / SemaObjC / class-extension-after-implementation.m
blobee3f0c1f5853b862d794cb36805ddb775a54a0f5
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
3 @interface A @end
5 @implementation A @end // expected-note {{class implementation is declared here}}
7 @interface A () // expected-error {{cannot declare class extension for 'A' after class implementation}}
8 -(void) im0;
9 @end