hanchenye-llvm-project/clang/test/Sema/warn-unused-label.c

9 lines
133 B
C
Raw Normal View History

// RUN: %clang_cc1 -fsyntax-only -Wunused-label -verify %s
void f() {
a:
goto a;
b: // expected-warning{{unused}}
return;
}