blob: 163446002e6043e5e18727d980bdda973862cc51 [file] [log] [blame]
Argyrios Kyrtzidis72664df2010-09-19 21:21:25 +00001// RUN: %clang_cc1 -fsyntax-only -Wunused-label -verify %s
2
3void f() {
4 a:
5 goto a;
6 b: // expected-warning{{unused}}
Argyrios Kyrtzidis9f483542010-09-28 14:54:07 +00007 c: __attribute__((unused));
8 d: __attribute__((noreturn)); // expected-warning {{The only valid attribute for labels is 'unused'}}
9 goto d;
Argyrios Kyrtzidis72664df2010-09-19 21:21:25 +000010 return;
11}