зеркало из https://github.com/microsoft/clang-1.git
Added test case for non-objective-c situation in
my last patch. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97075 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
5e49b2f3e0
Коммит
2ce692aa82
|
@ -24,3 +24,15 @@ void f(void (^block)(void));
|
|||
}
|
||||
@end
|
||||
|
||||
struct S {
|
||||
int y;
|
||||
};
|
||||
|
||||
void foo () {
|
||||
struct S *SELF;
|
||||
f(^{
|
||||
f(^{
|
||||
SELF->y = 42;
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче