This removes links to rdar, which is an internal bug tracker that the community doesn't have visibility into. See further discussion at: https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
20 lines
278 B
Objective-C
20 lines
278 B
Objective-C
// RUN: %clang_cc1 -debug-info-kind=limited %s -fblocks -S -o %t
|
|
|
|
@interface NSObject {
|
|
struct objc_object *isa;
|
|
}
|
|
@end
|
|
@interface Foo : NSObject {
|
|
int _prop;
|
|
}
|
|
@end
|
|
|
|
@implementation Foo
|
|
- (int)doSomething {
|
|
int (^blk)(void) = ^{ return _prop; };
|
|
return blk();
|
|
}
|
|
|
|
@end
|
|
|