1 | // 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 |
---|---|
2 | // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -x objective-c -include-pch %t.pch %s -verify -Wno-objc-root-class |
3 | // expected-no-diagnostics |
4 | |
5 | @implementation T |
6 | - (void)test { |
7 | } |
8 | @end |
9 |