summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic99.C
blob: 8398b2a6675a02ba48f7ff6501509fe30b4af240 (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-do compile { target c++11 } }

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);
}