diff options
Diffstat (limited to 'clang/test/CodeGenCXX/virt-thunk-reference.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/virt-thunk-reference.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/virt-thunk-reference.cpp b/clang/test/CodeGenCXX/virt-thunk-reference.cpp new file mode 100644 index 0000000..0cd958b --- /dev/null +++ b/clang/test/CodeGenCXX/virt-thunk-reference.cpp @@ -0,0 +1,7 @@ +// RUN: %clang_cc1 -emit-llvm-only %s + +struct A { int a; virtual void aa(int&); }; +struct B { int b; virtual void bb(int&); }; +struct C : A,B { virtual void aa(int&), bb(int&); }; +void C::aa(int&) {} +void C::bb(int&) {} |