diff options
author | Rumeet Dhindsa <rdhindsa@google.com> | 2022-01-04 16:23:20 -0800 |
---|---|---|
committer | Rumeet Dhindsa <rdhindsa@google.com> | 2022-01-04 16:43:54 -0800 |
commit | 37be74885946f18dbeb70343ad659924c61d2549 (patch) | |
tree | 66d82a824bab99d0c0ef1e9afe30a3234e3f8fb9 /clang/test/FixIt | |
parent | c9489225678106c21cb8584c08f6003ba3987a5d (diff) | |
download | llvm-37be74885946f18dbeb70343ad659924c61d2549.zip llvm-37be74885946f18dbeb70343ad659924c61d2549.tar.gz llvm-37be74885946f18dbeb70343ad659924c61d2549.tar.bz2 |
Revert "[clang][ObjC] Add fix it for missing methods in impl"
This reverts commit dd72ae3dcc6895f95e1203b40aabcb069c76a0ab.
Notified the author of the internal failure and author suggested to revert it for
now.
Diffstat (limited to 'clang/test/FixIt')
-rw-r--r-- | clang/test/FixIt/fixit-objc-missing-method-impl.m | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/clang/test/FixIt/fixit-objc-missing-method-impl.m b/clang/test/FixIt/fixit-objc-missing-method-impl.m deleted file mode 100644 index acc0896..0000000 --- a/clang/test/FixIt/fixit-objc-missing-method-impl.m +++ /dev/null @@ -1,15 +0,0 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s -// RUN: cp %s %t -// RUN: not %clang_cc1 -pedantic -Werror -fixit -x objective-c %t -// RUN: %clang_cc1 -pedantic -Werror -x objective-c %t - -__attribute__((objc_root_class)) -@interface NSObject -@end - -@interface Foo : NSObject -- (void)fooey; // expected-note{{method 'fooey' declared here}} -@end - -@implementation Foo // expected-warning{{method definition for 'fooey' not found}} -@end |