blob: 8eb4cff4fbe1f1c7c84db03b1bfe095bec222304 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// <rdar://problem/7971948>
struct A {};
struct B {
void foo() {
switch (a) { // expected-error{{use of undeclared identifier 'a'}}
default:
return;
}
}
};