blob: baa79e7d89717ab12c54edb5ca677611251d7d36 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s -fblocks
Douglas Gregorb65f2422008-12-01 19:48:06 +00002
3void tovoid(void*);
4
5void tovoid_test(int (^f)(int, int)) {
6 tovoid(f);
7}
Anders Carlsson5e578312009-05-26 02:03:20 +00008
9void reference_lvalue_test(int& (^f)()) {
10 f() = 10;
11}
John McCallea1471e2010-05-20 01:18:31 +000012
13// PR 7165
14namespace test1 {
15 void g(void (^)());
16 struct Foo {
17 void foo();
18 void test() {
19 (void) ^{ foo(); };
20 }
21 };
22}
23
24namespace test2 {
25 int repeat(int value, int (^block)(int), unsigned n) {
26 while (n--) value = block(value);
27 return value;
28 }
29
30 class Power {
31 int base;
32
33 public:
34 Power(int base) : base(base) {}
35 int calculate(unsigned n) {
36 return repeat(1, ^(int v) { return v * base; }, n);
37 }
38 };
39
40 int test() {
41 return Power(2).calculate(10);
42 }
43}