OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [sfinae14.C] - Blame information for rev 693

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 693 jeremybenn
// PR c++/48557
2
// { dg-options -std=c++0x }
3
 
4
template
5
struct add_rval_ref
6
{
7
  typedef T&& type;
8
};
9
 
10
template<>
11
struct add_rval_ref
12
{
13
  typedef void type;
14
};
15
 
16
template
17
typename add_rval_ref::type create();
18
 
19
template
20
  class = decltype(create() + create())
21
>
22
char f(int);
23
 
24
template
25
char (&f(...))[2];
26
 
27
static_assert(sizeof(f(0)) != 1, "Error");  // (a)

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.