summaryrefslogtreecommitdiff
path: root/test/Modules/objc-method-redecl.m
blob: f7acda5450d6b43df2e4445cafe1bf50f288b92f (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -x objective-c-header -emit-pch %S/Inputs/objc-method-redecl.h -o %t.pch -Wno-objc-root-class
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -x objective-c -include-pch %t.pch %s -verify -Wno-objc-root-class
// expected-no-diagnostics

@implementation T
- (void)test {
}
@end