bolt/deps/llvm-18.1.8/clang/test/FixIt/typo-crash.m
2025-02-14 19:21:04 +01:00

5 lines
239 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
@implementation Unknown (Blarg) // expected-error{{cannot find interface declaration for 'Unknown'}}
- (int)method { return ivar; } // expected-error{{use of undeclared identifier 'ivar'}}
@end