blob: 8eb4cff4fbe1f1c7c84db03b1bfe095bec222304 [file] [log] [blame]
Douglas Gregor4186ff42010-05-20 23:20:59 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3// <rdar://problem/7971948>
4struct A {};
5struct B {
6 void foo() {
7 switch (a) { // expected-error{{use of undeclared identifier 'a'}}
8 default:
9 return;
10 }
11 }
12};