commit | 5f478b78c0958d620b7dc6c61f113a42f46ab67a | [log] [tgz] |
---|---|---|
author | Douglas Gregor <dgregor@apple.com> | Sat May 30 06:58:37 2009 +0000 |
committer | Douglas Gregor <dgregor@apple.com> | Sat May 30 06:58:37 2009 +0000 |
tree | 16397843aba8dfb5e10d24c8ccb25493bd7c86ce | |
parent | 182319375a2cec35cdc2922e99549064ef2e52c1 [diff] [blame] |
AST printing for C++ base classes llvm-svn: 72617
diff --git a/clang/test/Coverage/cxx-language-features.inc b/clang/test/Coverage/cxx-language-features.inc index bac6bc7..51c1104 100644 --- a/clang/test/Coverage/cxx-language-features.inc +++ b/clang/test/Coverage/cxx-language-features.inc
@@ -12,3 +12,10 @@ using namespace std; namespace safestl = ::std::debug; + +class Base1 { +}; + +class Base2 { }; + +class Derived1 : Base1, virtual public Base2 { };