blob: 6d22f88093653af9599fb4a4628d92a1618a8f88 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
// expected-no-diagnostics
// Core DR 532.
namespace PR8130 {
struct A { };
template<class T> struct B {
template<class R> int &operator*(R&);
};
template<class T, class R> float &operator*(T&, R&);
void test() {
A a;
B<A> b;
int &ir = b * a;
}
}
namespace OperatorWithRefQualifier {
struct A { };
template<class T> struct B {
template<class R> int &operator*(R&) &&;
};
template<class T, class R> float &operator*(T&&, R&);
void test() {
A a;
B<A> b;
float &ir = b * a;
int &ir2 = B<A>() * a;
}
}
namespace OrderWithStaticMember {
struct A {
template<class T> int g(T**, int=0) { return 0; }
template<class T> static int g(T*) { return 1; }
};
void f() {
A a;
int **p;
a.g(p);
}
}