blob: d5ecd8c1e3bfcbc0bbdefe3babaf3c46e902abf3 [file] [log] [blame]
Charles Li85dec552015-12-10 01:07:17 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2// RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 %s
3// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
Douglas Gregor9dc8bd32009-08-02 23:24:31 +00004
5// PR4607
6template <class T> struct X {};
7
8template <> struct X<char>
9{
10 static char* g();
11};
12
13template <class T> struct X2 {};
14
15template <class U>
16struct X2<U*> {
17 static void f() {
18 X<U>::g();
19 }
20};
21
22void a(char *a, char *b) {X2<char*>::f();}
Douglas Gregore9029562010-05-06 00:28:52 +000023
24namespace WonkyAccess {
25 template<typename T>
26 struct X {
27 int m;
28 };
29
30 template<typename U>
31 class Y;
32
33 template<typename U>
34 struct Y<U*> : X<U> { };
35
36 template<>
37 struct Y<float*> : X<float> { };
38
39 int f(Y<int*> y, Y<float*> y2) {
40 return y.m + y2.m;
41 }
42}
Douglas Gregorb4f4d512011-05-04 21:55:00 +000043
44// <rdar://problem/9169404>
45namespace rdar9169404 {
46 template<typename T, T N> struct X { };
47 template<bool C> struct X<bool, C> {
48 typedef int type;
49 };
50
51 X<bool, -1>::type value;
Charles Li85dec552015-12-10 01:07:17 +000052#if __cplusplus >= 201103L
53 // expected-error@-2 {{non-type template argument evaluates to -1, which cannot be narrowed to type 'bool'}}
54#else
55 // expected-no-diagnostics
56#endif
Douglas Gregorb4f4d512011-05-04 21:55:00 +000057}