blob: 5dac99131b6b5191d60417aaf481e5cf54fe0f00 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -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