blob: 6fc70429a9d32ee366120579326abe1123de7b07 [file] [log] [blame]
Anders Carlsson09025312009-08-29 05:16:22 +00001// RUN: clang-cc -fsyntax-only -Wall -verify %s
2
3template<typename T> struct A {
4 A() : a(1) { } // expected-error{{incompatible type passing 'int', expected 'void *'}}
5
6 T a;
7};
8
9A<int> a0;
10A<void*> a1; // expected-note{{in instantiation of member function 'A<void *>::A' requested here}}
11
12template<typename T> struct B {
13 // FIXME: This should warn about initialization order
14 B() : b(1), a(2) { }
15
16 int a;
17 int b;
18};
19
20B<int> b0;
Eli Friedmanc5573a82009-08-29 22:22:07 +000021
22template <class T> struct AA { AA(int); };
23template <class T> class BB : public AA<T> {
24 BB() : AA<T>(1) {}
25};
26BB<int> x;