reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | /* RUN: %clang_cc1 -fsyntax-only -verify %s */ void test1() { goto ; /* expected-error {{expected identifier}} */ } void test2() { l: /* expected-note {{previous definition is here}} */ { __label__ l; l: goto l; } { __label__ l; __label__ h; /* expected-error {{use of undeclared label 'h'}} */ l: goto l; } /* PR3429 & rdar://8287027 */ { l: /* expected-error {{redefinition of label 'l'}} */ ; } } |