blob: 6b755c8ea954912623a6350f68b73910f73b6981 [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
template<typename T, typename U>
struct X0 {
void f(T x, U y) {
x + y; // expected-error{{invalid operands}}
}
};
struct X1 { };
template struct X0<int, float>;
template struct X0<int*, int>;
template struct X0<int X1::*, int>; // expected-note{{instantiation of}}
template<typename T>
struct X2 {
void f(T);
T g(T x, T y) {
/* DeclStmt */;
T *xp = &x, &yr = y; // expected-error{{pointer to a reference}}
/* NullStmt */;
}
};
template struct X2<int>;
template struct X2<int&>; // expected-note{{instantiation of}}