blob: 4ced22c92ac676d3647c98d8914fb17e5acf4ff1 [file] [log] [blame]
Richard Smithd6a04d72016-03-25 21:49:43 +00001// RUN: not %clang_cc1 -std=c++11 %s -fsyntax-only 2>&1 | FileCheck %s
2// RUN: %clang_cc1 -std=c++11 %s -fsyntax-only -DWARN 2>&1 | FileCheck %s --check-prefix=CHECK-WARN
3
4#ifndef WARN
Richard Smith6642bb32016-03-24 19:12:22 +00005
6// Ensure that the diagnostics we produce for this situation appear in a
7// deterministic order. This requires ADL to provide lookup results in a
8// deterministic order.
Richard Smith95853072016-03-25 00:08:53 +00009template<typename T, typename> struct Error { typedef typename T::error error; };
10struct X { template<typename T> friend typename Error<X, T>::error f(X, T); };
11struct Y { template<typename T> friend typename Error<Y, T>::error f(T, Y); };
Richard Smith6642bb32016-03-24 19:12:22 +000012
13void g() {
14 f(X(), Y());
15}
16
17// We don't really care which order these two diagnostics appear (although the
18// order below is source order, which seems best). The crucial fact is that
19// there is one single order that is stable across multiple runs of clang.
20//
Richard Smith6642bb32016-03-24 19:12:22 +000021// CHECK: no type named 'error' in 'X'
Richard Smith95853072016-03-25 00:08:53 +000022// CHECK: no type named 'error' in 'Y'
Richard Smith6642bb32016-03-24 19:12:22 +000023// CHECK: no matching function for call to 'f'
Richard Smith95853072016-03-25 00:08:53 +000024
25
26struct Oper {
27 template<typename T, typename U = typename Error<Oper, T>::error> operator T();
28
29 operator int*();
30 operator float*();
31 operator X*();
32 operator Y*();
33
34 operator int(*[1])();
35 operator int(*[2])();
36 operator int(*[3])();
37 operator int(*[4])();
38 operator int(*[5])();
39 operator int(*[6])();
40 operator int(*[7])();
41 operator int(*[8])();
42 operator float(*[1])();
43 operator float(*[2])();
44 operator float(*[3])();
45 operator float(*[4])();
46 operator float(*[5])();
47 operator float(*[6])();
48 operator float(*[7])();
49 operator float(*[8])();
50};
51int *p = Oper() + 0;
52
53// CHECK: no type named 'error' in 'Oper'
54// CHECK: in instantiation of template class 'Error<Oper, int *>'
55// CHECK: no type named 'error' in 'Oper'
56// CHECK: in instantiation of template class 'Error<Oper, float *>'
57// CHECK: no type named 'error' in 'Oper'
58// CHECK: in instantiation of template class 'Error<Oper, X *>'
59// CHECK: no type named 'error' in 'Oper'
60// CHECK: in instantiation of template class 'Error<Oper, Y *>'
Richard Smithd6a04d72016-03-25 21:49:43 +000061
62#endif
63
64template<typename T> struct UndefButUsed {
65 static inline int f();
66 static int g() { return f(); }
67};
68int undef_but_used = UndefButUsed<int>::g() + UndefButUsed<float>::g() + UndefButUsed<char>::g() + UndefButUsed<void>::g();
69
70// CHECK-WARN: inline function 'UndefButUsed<int>::f' is not defined
71// CHECK-WARN: inline function 'UndefButUsed<float>::f' is not defined
72// CHECK-WARN: inline function 'UndefButUsed<char>::f' is not defined
73// CHECK-WARN: inline function 'UndefButUsed<void>::f' is not defined