blob: b51ab9a55cca8c2be5963545b4d264f1201fb183 [file] [log] [blame]
Ted Kremenek56b70862007-09-26 20:14:22 +00001// RUN: clang -parse-ast -verify %s
Chris Lattner4b009652007-07-25 00:24:17 +00002
3void f5 (int z) {
4 if (z)
5 default: // expected-error {{not in switch statement}}
6 ;
7}
8