URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [sfinae27.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/50157
// { dg-options -std=c++0x }
template<class T>
T val();
template<class T, class Arg, class =
decltype(::new T(val<Arg>()))
>
auto test(int) -> char;
template<class, class>
auto test(...) -> char (&)[2];
struct P {
explicit operator bool(); // (#13)
};
typedef decltype(test<bool, P>(0)) type; // OK
typedef decltype(test<float, P>(0)) type2; // Error (#17)
Go to most recent revision | Compare with Previous | Blame | View Log