2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -fblocks %s
|
2008-12-23 08:53:59 +08:00
|
|
|
@protocol NSObject;
|
|
|
|
|
|
|
|
void bar(id(^)(void));
|
|
|
|
void foo(id <NSObject>(^objectCreationBlock)(void)) {
|
2010-12-03 05:47:04 +08:00
|
|
|
return bar(objectCreationBlock); // expected-warning{{incompatible pointer types passing 'id<NSObject> (^)()' to parameter of type 'id (^)()'}}
|
2008-12-23 08:53:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void bar2(id(*)(void));
|
|
|
|
void foo2(id <NSObject>(*objectCreationBlock)(void)) {
|
2010-12-03 05:47:04 +08:00
|
|
|
return bar2(objectCreationBlock); // expected-warning{{incompatible pointer types passing 'id<NSObject> (*)()' to parameter of type 'id (*)()'}}
|
2008-12-23 08:53:59 +08:00
|
|
|
}
|
|
|
|
|
2009-02-04 08:32:51 +08:00
|
|
|
void bar3(id(*)()); // expected-note{{candidate function}}
|
2008-12-23 08:53:59 +08:00
|
|
|
void foo3(id (*objectCreationBlock)(int)) {
|
2009-02-04 08:32:51 +08:00
|
|
|
return bar3(objectCreationBlock); // expected-error{{no matching}}
|
2008-12-23 08:53:59 +08:00
|
|
|
}
|
|
|
|
|
2009-02-04 08:32:51 +08:00
|
|
|
void bar4(id(^)()); // expected-note{{candidate function}}
|
2008-12-23 08:53:59 +08:00
|
|
|
void foo4(id (^objectCreationBlock)(int)) {
|
2009-02-04 08:32:51 +08:00
|
|
|
return bar4(objectCreationBlock); // expected-error{{no matching}}
|
2008-12-23 08:53:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void foo5(id (^x)(int)) {
|
|
|
|
if (x) { }
|
|
|
|
}
|
2009-02-17 03:28:42 +08:00
|
|
|
|
|
|
|
// <rdar://problem/6590445>
|
|
|
|
@interface Foo {
|
|
|
|
@private
|
|
|
|
void (^_block)(void);
|
|
|
|
}
|
|
|
|
- (void)bar;
|
|
|
|
@end
|
|
|
|
|
|
|
|
namespace N {
|
|
|
|
class X { };
|
|
|
|
void foo(X);
|
|
|
|
}
|
|
|
|
|
|
|
|
@implementation Foo
|
|
|
|
- (void)bar {
|
|
|
|
_block();
|
|
|
|
foo(N::X()); // okay
|
|
|
|
}
|
|
|
|
@end
|
2009-12-12 06:40:48 +08:00
|
|
|
|
|
|
|
typedef signed char BOOL;
|
|
|
|
void foo6(void *block) {
|
|
|
|
void (^vb)(id obj, int idx, BOOL *stop) = (void (^)(id, int, BOOL *))block;
|
|
|
|
BOOL (^bb)(id obj, int idx, BOOL *stop) = (BOOL (^)(id, int, BOOL *))block;
|
|
|
|
}
|
2010-11-02 02:37:59 +08:00
|
|
|
|
|
|
|
// <rdar://problem/8600419>: Require that the types of block
|
|
|
|
// parameters are complete.
|
|
|
|
namespace N1 {
|
|
|
|
template<class _T> class ptr; // expected-note{{template is declared here}}
|
|
|
|
|
|
|
|
template<class _T>
|
|
|
|
class foo {
|
|
|
|
public:
|
|
|
|
void bar(void (^)(ptr<_T>));
|
|
|
|
};
|
|
|
|
|
|
|
|
class X;
|
|
|
|
|
|
|
|
void test2();
|
|
|
|
|
|
|
|
void test()
|
|
|
|
{
|
|
|
|
foo<X> f;
|
|
|
|
f.bar(^(ptr<X> _f) { // expected-error{{implicit instantiation of undefined template 'N1::ptr<N1::X>'}}
|
|
|
|
test2();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2011-01-19 19:48:09 +08:00
|
|
|
|
|
|
|
// Make sure we successfully instantiate the copy constructor of a
|
|
|
|
// __block variable's type.
|
|
|
|
namespace N2 {
|
|
|
|
template <int n> struct A {
|
|
|
|
A() {}
|
|
|
|
A(const A &other) {
|
|
|
|
int invalid[-n]; // expected-error 2 {{array with a negative size}}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void test1() {
|
|
|
|
__block A<1> x; // expected-note {{requested here}}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <int n> void test2() {
|
|
|
|
__block A<n> x; // expected-note {{requested here}}
|
|
|
|
}
|
|
|
|
template void test2<2>();
|
|
|
|
}
|