summaryrefslogtreecommitdiff
path: root/clang/test/Sema/warn-unused-label.c
blob: 48370a5fd6412a6cd9135c2a680ce29a6db6f05a (about) (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 {{'noreturn' attribute only applies to functions}}
  goto d;
  return;
}