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