summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic99.C
blob: 457212712bd4ec0ea3cd658fb0b8c391df53d4d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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);
}