blob: e092b531582be0516da8998ea0424091e23768b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// RUN: clang-cc -fsyntax-only -verify %s
template<typename T>
struct add_pointer {
typedef T* type; // expected-error{{'type' declared as a pointer to a reference}}
};
add_pointer<int>::type test1(int * ptr) { return ptr; }
add_pointer<float>::type test2(int * ptr) {
return ptr; // expected-error{{incompatible type returning 'int *', expected 'add_pointer<float>::type' (aka 'float *')}}
}
add_pointer<int&>::type // expected-note{{in instantiation of template class 'struct add_pointer<int &>' requested here}} \
// expected-error {{no type named 'type' in 'struct add_pointer<int &>'}}
test3();
|