mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 19:24:21 +00:00
0c8a172911
category implementation, which showed up during (attempted) typo correction. Fixes <rdar://problem/7605289>. llvm-svn: 95334
7 lines
267 B
Objective-C
7 lines
267 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
// <rdar://problem/7605289>
|
|
@implementation Unknown (Blarg) // expected-error{{cannot find interface declaration for 'Unknown'}}
|
|
- (int)method { return ivar; } // expected-error{{use of undeclared identifier 'ivar'}}
|
|
@end
|