blob: 13186018450161610237e9d0f1695a7c00ab1175 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -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}}
Anders Carlsson2d85f8b2007-10-10 20:50:11 +00006 ; // expected-warning {{if statement has empty body}}
Chris Lattner0fa152e2007-07-21 03:00:26 +00007}
8