mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 03:26:16 +00:00

Fixes accurately getting a cursor inside an objc container containing a struct definition, from a PCH/preamble file. rdar://12584613 llvm-svn: 173811
9 lines
76 B
Objective-C
9 lines
76 B
Objective-C
@interface I {
|
|
struct AA {
|
|
int x;
|
|
} aa;
|
|
int var;
|
|
}
|
|
-(id)foo;
|
|
@end
|