]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaTemplate/instantiate-member-initializers.cpp
Update clang to r94309.
[FreeBSD/FreeBSD.git] / test / SemaTemplate / instantiate-member-initializers.cpp
1 // RUN: %clang_cc1 -fsyntax-only -Wall -verify %s
2
3 template<typename T> struct A {
4   A() : a(1) { } // expected-error{{incompatible type passing 'int', expected 'void *'}}
5
6   T a;
7 };
8
9 A<int> a0;
10 A<void*> a1; // expected-note{{in instantiation of member function 'A<void *>::A' requested here}}
11
12 template<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
20 B<int> b0;
21
22 template <class T> struct AA { AA(int); };
23 template <class T> class BB : public AA<T> {
24   BB() : AA<T>(1) {}
25 };
26 BB<int> x;