aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/warn-unused-label.c
blob: 163446002e6043e5e18727d980bdda973862cc51 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -fsyntax-only -Wunused-label -verify %s

void f() {
  a:
  goto a;
  b: // expected-warning{{unused}}
  c: __attribute__((unused));
  d: __attribute__((noreturn)); // expected-warning {{The only valid attribute for labels is 'unused'}}
  goto d;
  return;
}