blob: d9e0ff88bd8d30fd21fba61a5109472414625fd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// RUN: %clang_cc1 -fsyntax-only -std=c++0x -verify %s
namespace PR6285 {
template<typename T> struct identity
{ typedef T type; };
struct D {
template<typename T = short>
operator typename identity<T>::type(); // expected-note{{candidate}}
};
int f() { return D(); } // expected-error{{no viable conversion}}
}
|