repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
debug-info-crash-2.m
blob
e464cc730b8867c0dbf741cb24ab8a73a8ea7e08
1
// RUN: %clang_cc1 -triple x86_64-apple-darwin11 -debug-info-kind=limited -S %s -o -
2
// REQUIRES: x86-registered-target
3
4
@class Bar;
5
@interface Foo
6
@property (strong, nonatomic) Bar *window;
7
@end
8
9
@interface Foo__ : Foo
10
@end
11
@implementation Foo__
12
@end
13
14
@implementation Foo
15
@synthesize window = _window;
16
@end
17