зеркало из https://github.com/microsoft/clang-1.git
break testcase over multiple lines to make it easier to read.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125810 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
21ac10d5e6
Коммит
2fda14afb1
|
@ -3,8 +3,12 @@
|
|||
void xx();
|
||||
|
||||
int a() {
|
||||
A:if (1) xx();
|
||||
return ^{A:return 1;}();
|
||||
A:
|
||||
|
||||
if (1) xx();
|
||||
return ^{
|
||||
A: return 1;
|
||||
}();
|
||||
}
|
||||
int b() {
|
||||
A: return ^{int a; A:return 1;}();
|
||||
|
@ -15,5 +19,9 @@ int d() {
|
|||
}
|
||||
|
||||
int c() {
|
||||
goto A; return ^{ A:return 1;}(); // expected-error {{use of undeclared label 'A'}}
|
||||
goto A; // expected-error {{use of undeclared label 'A'}}
|
||||
return ^{
|
||||
A:
|
||||
return 1;
|
||||
}();
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче