llvm-project/clang/test/Sema/block-labels.c
Daniel Dunbar a45cf5b6b0 Rename clang to clang-cc.
Tests and drivers updated, still need to shuffle dirs.

llvm-svn: 67602
2009-03-24 02:24:46 +00:00

18 lines
367 B
C

// RUN: clang-cc %s -verify -fblocks -fsyntax-only
int a() {
A:if (1) xx();
return ^{A:return 1;}();
}
int b() {
A: return ^{int a; A:return 1;}();
}
int d() {
A: return ^{int a; A: a = ^{int a; A:return 1;}() + ^{int b; A:return 2;}(); return a; }();
}
int c() {
goto A; return ^{ A:return 1;}(); // expected-error {{use of undeclared label 'A'}}
}