blob: 2c123d0b0fc4cad16b255f603a2ad914d4fc673d [file] [log] [blame]
Mike Stump9a24dc12010-01-15 03:15:36 +00001// RUN: %clang %s -fsyntax-only -Xclang -verify -fblocks -Wunreachable-code
2
3void test1() {
4 goto c;
5 d:
6 goto e; // expected-warning {{will never be executed}}
7 c: ;
8 int i;
9 return;
10 goto b; // expected-warning {{will never be executed}}
11 goto a; // expected-warning {{will never be executed}}
12 b:
13 i = 1;
14 a:
15 i = 2;
16 goto f;
17 e:
18 goto d;
19 f: ;
20}