blob: 3b4857ae0e9e2c6f32df0bd82a6c33dde56d189b [file] [log] [blame]
Fariborz Jahanianf64bc202012-02-23 22:51:36 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fblocks -fsyntax-only -verify %s
2// rdar://10907410
3
4void test(id pid, Class pclass) {
5 void (^block)(void) = @"help"; // expected-error {{initializing 'void (^)(void)' with an expression of incompatible type 'NSString *'}}
6 void (^block1)(void) = pid;
7 void (^block2)(void) = @"help"; // expected-error {{initializing 'void (^)(void)' with an expression of incompatible type 'NSString *'}}
8 void (^block3)(void) = @"help"; // expected-error {{initializing 'void (^)(void)' with an expression of incompatible type 'NSString *'}}
9}
10