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

Subversion Repositories openrisc

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

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 693 jeremybenn
// PR c++/49593
2
// { dg-options -std=c++0x }
3
 
4
template void f(T...) { }
5
 
6
template
7
static void
8
g(Args&&... args)
9
{
10
  f( static_cast(args)... );
11
  f( (Args)args... );
12
  f( Args(args)... );
13
  f( Args{args}... );
14
}
15
 
16
int main()
17
{
18
  g(1, '2', 3.0);
19
}

powered by: WebSVN 2.1.0

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