bolt/deps/llvm-18.1.8/clang/test/Modules/objc-method-redecl.m
2025-02-14 19:21:04 +01:00

9 lines
353 B
Objective-C

// RUN: rm -rf %t
// 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