blob: fd9417c795f6f8c80ea68c8aa7888398d7840a90 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Fariborz Jahanian96174332009-07-01 19:21:19 +00002
3template<class X> struct A {};
4
5template<class X> struct B : A<X> {
6 B() : A<X>() {}
7};
8B<int> x;
9
10template<class X> struct B1 : A<X> {
11 typedef A<X> Base;
12 B1() : Base() {}
13};
14B1<int> x1;
15
16
17template<typename T> struct Tmpl { };
18
19template<typename T> struct TmplB { };
20
21struct TmplC : Tmpl<int> {
22 TmplC() :
23 Tmpl<int>(),
24 TmplB<int>() { } // expected-error {{type 'TmplB<int>' is not a direct or virtual base of 'TmplC'}}
25};
26
27
28struct TmplD : Tmpl<char>, TmplB<char> {
29 TmplD():
30 Tmpl<int>(), // expected-error {{type 'Tmpl<int>' is not a direct or virtual base of 'TmplD'}}
31 TmplB<char>() {}
32};
33