URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [variadic99.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/43054
// { dg-options "-std=c++0x" }
template<typename R> struct future { };
template<typename Fn, typename... Args>
auto
async(Fn&& fn, Args&&... args)
-> future<decltype(fn(args...))>;
template<typename Fn, typename... Args>
auto
async(Fn&& fn, Args&&... args)
-> future<decltype(fn(args...))>;
int work2(int value);
void work(int value)
{
async(work2, value);
}
Go to most recent revision | Compare with Previous | Blame | View Log