Fix the clang-wpa example.
[clang.git] / test / CodeGenCXX / virt-thunk-reference.cpp
blob0cd958bf3208176a5d246b25285affcff7019ea6
1 // RUN: %clang_cc1 -emit-llvm-only %s
3 struct A { int a; virtual void aa(int&); };
4 struct B { int b; virtual void bb(int&); };
5 struct C : A,B { virtual void aa(int&), bb(int&); };
6 void C::aa(int&) {}
7 void C::bb(int&) {}