Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjCXX / arc-nsconsumed-errors.mm
bloba5daeeffc70a9cd23c92ad09d3344f1f3cb86052
1 // RUN: %clang_cc1 -fsyntax-only -fobjc-arc -verify -fblocks -triple x86_64-apple-darwin10.0.0 %s
3 typedef void (^blk)(id, __attribute((ns_consumed)) id);
4 typedef void (^blk1)(__attribute((ns_consumed))id, __attribute((ns_consumed)) id);
5 blk a = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong blk'}}
7 blk b = ^void (id, __attribute((ns_consumed)) id){};
9 blk c = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong blk'}}
11 blk d = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk'}}
13 blk1 a1 = ^void (__attribute((ns_consumed)) id, id){}; // expected-error {{cannot initialize a variable of type '__strong blk1'}}
15 blk1 b2 = ^void (id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of type '__strong blk1'}}
17 blk1 c3 = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){};
19 blk1 d4 = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk1'}}
22 typedef void (*releaser_t)(__attribute__((ns_consumed)) id);
24 void normalFunction(id);
25 releaser_t r1 = normalFunction; // expected-error {{cannot initialize a variable of type 'releaser_t'}}
27 void releaser(__attribute__((ns_consumed)) id);
28 releaser_t r2 = releaser; // no-warning
30 template <typename T>
31 void templateFunction(T) { } // expected-note {{candidate template ignored: could not match 'void (__strong id)' against 'void (__attribute__((ns_consumed)) id)'}} \
32                              // expected-note {{candidate template ignored: could not match 'void (AntiRelease *__strong)' against 'void (__attribute__((ns_consumed)) AntiRelease *__strong)'}}
33 releaser_t r3 = templateFunction<id>; // expected-error {{address of overloaded function 'templateFunction' does not match required type 'void (__attribute__((ns_consumed)) id)'}}
35 template <typename T>
36 void templateReleaser(__attribute__((ns_consumed)) T) { }
37 // expected-note@-1 {{candidate template ignored: could not match 'void (__attribute__((ns_consumed)) AntiRelease *__strong)' against 'void (AntiRelease *__strong)'}}
38 // expected-note@-2 {{candidate template ignored: could not match 'void (__attribute__((ns_consumed)) ExplicitAntiRelease *__strong)' against 'void (ExplicitAntiRelease *__strong)'}}
39 releaser_t r4 = templateReleaser<id>; // no-warning
42 @class AntiRelease, ExplicitAntiRelease, ProRelease;
44 template<>
45 void templateFunction(__attribute__((ns_consumed)) AntiRelease *); // expected-error {{no function template matches function template specialization 'templateFunction'}}
47 template<>
48 void templateReleaser(AntiRelease *); // expected-error {{no function template matches function template specialization 'templateReleaser'}}
50 template<>
51 void templateReleaser(ExplicitAntiRelease *) {} // expected-error {{no function template matches function template specialization 'templateReleaser'}}
53 template<>
54 void templateReleaser(__attribute__((ns_consumed)) ProRelease *); // no-warning