Add missing exit for 'case'.
[oota-llvm.git] / test / FrontendC++ / 2010-05-12-PtrToMember-Dbg.cpp
1 //RUN: %llvmgxx -O0 -S -g -o - %s | grep DW_TAG_auto_variable
2 class Foo
3 {
4  public:
5   int x;
6   int y;
7   Foo (int i, int j) { x = i; y = j; }
8 };
9
10
11 Foo foo(10, 11);
12
13 int main() {
14   int Foo::* pmi = &Foo::y;
15   return foo.*pmi;
16 }
17