[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjC / attr-malloc.m
blob8fe31e28f89333dc0e5e6f966af973e4b7a9f5d7
1 // RUN: %clang_cc1 -verify -fsyntax-only -fblocks %s
3 @interface TestAttrMallocOnMethods {}
4 - (id) test1 __attribute((malloc)); //  expected-warning {{attribute only applies to functions}}
5 - (int) test2 __attribute((malloc)); //  expected-warning {{attribute only applies to functions}}
6 @end
8 id bar(void) __attribute((malloc)); // no-warning
10 typedef void (^bptr)(void);
11 bptr baz(void) __attribute((malloc)); // no-warning
13 __attribute((malloc)) id (*f)(void); //  expected-warning {{attribute only applies to functions}}
14 __attribute((malloc)) bptr (*g)(void); //  expected-warning {{attribute only applies to functions}}
15 __attribute((malloc)) void *(^h)(void); //  expected-warning {{attribute only applies to functions}}