URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [sfinae28.C] - Rev 693
Compare with Previous | Blame | View Log
// PR c++/50324
// { dg-options -std=c++0x }
struct complete { };
struct incomplete;
template<class T> auto f(T *) -> decltype(T{}) *;
template<class T> char f(T);
int main()
{
complete *p = 0;
static_assert(sizeof(f(p)) == sizeof(void*), "");
incomplete *q = 0;
static_assert(sizeof(f(q)) == 1u, "");
}