1// RUN: %clang_cc1 -emit-llvm-only %s 2 3struct A { int a; virtual void aa(int&); }; 4struct B { int b; virtual void bb(int&); }; 5struct C : A,B { virtual void aa(int&), bb(int&); }; 6void C::aa(int&) {} 7void C::bb(int&) {} 8