hanchenye-llvm-project/clang/test/Parser/switch-recovery.cpp

13 lines
223 B
C++
Raw Normal View History

// 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;
}
}
};