summaryrefslogtreecommitdiffstats
path: root/test/CXX/temp/temp.decls/temp.variadic/ext-blocks.cpp
blob: 7375f98ec9c3288ca429e895fd50deb81a21804d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// RUN: %clang_cc1 -std=c++0x -fblocks -fsyntax-only -verify %s

// Tests the use of blocks with variadic templates.
template<typename ...Args>
int f0(Args ...args) {
  return ^ {
    return sizeof...(Args);
  }() + ^ {
    return sizeof...(args);
  }();
}

template<typename ...Args>
int f1(Args ...args) {
  return ^ {
    return f0(args...);
  }();
}

template int f0(int, float, double);
template int f1(const char*, int, float, double);

template<typename ...Args>
int f2(Args ...args) {
  return ^(Args ...block_args) {
    return f1(block_args...);
  }(args + 0 ...);
}

template int f2(const char*, int, float, double);

template<typename ...Args>
int f3(Args ...args) {
  return ^(Args *...block_args) {
    return f1(block_args...);
  }(&args...);
}

template int f3(const char*, int, float, double);

template<typename ...Args>
int PR9953(Args ...args) {
  return ^(Args *...block_args) {
    return f1(block_args); // expected-error{{expression contains unexpanded parameter pack 'block_args'}}
  }(&args...);
}
OpenPOWER on IntegriCloud