blob: b5979be264f7a578f1da3847896604b501eda458 [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}}
7 return;
8}