xref: /llvm-project/clang/test/FixIt/typo-crash.m (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3@implementation Unknown (Blarg) // expected-error{{cannot find interface declaration for 'Unknown'}}
4- (int)method { return ivar; } // expected-error{{use of undeclared identifier 'ivar'}}
5@end
6