From 29a9247ec2515c4bf3b0bbf9bcbb04f9899406e1 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Wed, 22 Oct 2008 17:49:05 +0000 Subject: Add representation of base classes in the AST, and verify that we don't have duplicated direct base classes. Seriliazation of base class specifiers is not yet implemented. llvm-svn: 57991 --- clang/test/SemaCXX/inherit.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'clang/test/SemaCXX/inherit.cpp') diff --git a/clang/test/SemaCXX/inherit.cpp b/clang/test/SemaCXX/inherit.cpp index 82d8db38cfd..8ccecddaf65 100644 --- a/clang/test/SemaCXX/inherit.cpp +++ b/clang/test/SemaCXX/inherit.cpp @@ -23,3 +23,10 @@ union U1 : public A { }; // expected-error{{unions cannot have base classes}} union U2 {}; class G : public U2 { }; // expected-error{{unions cannot be base classes}} + +typedef G G_copy; +typedef G G_copy_2; +typedef G_copy G_copy_3; + +class H : G_copy, A, G_copy_2, // expected-error{{base class 'G_copy' specified more than once as a direct base class}} + public G_copy_3 { }; // expected-error{{base class 'G_copy' specified more than once as a direct base class}} -- cgit v1.2.3