blob: 13186018450161610237e9d0f1695a7c00ab1175 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3void f5 (int z) {
4 if (z)
5 default: // expected-error {{not in switch statement}}
6 ; // expected-warning {{if statement has empty body}}
7}
8