[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / clang / test / Sema / attr-mig.m
blob547f2c2f300a7f18a33a9dfc6d3d1a39536b421d
1 // RUN: %clang_cc1 -fsyntax-only -fblocks -verify %s
3 typedef int kern_return_t;
4 #define KERN_SUCCESS 0
6 @interface NSObject
7 @end
9 @interface I: NSObject
10 - (kern_return_t)foo __attribute__((mig_server_routine)); // no-warning
11 - (void) bar_void __attribute__((mig_server_routine)); // expected-warning{{'mig_server_routine' attribute only applies to routines that return a kern_return_t}}
12 - (int) bar_int __attribute__((mig_server_routine)); // expected-warning{{'mig_server_routine' attribute only applies to routines that return a kern_return_t}}
13 @end
15 @implementation I
16 - (kern_return_t)foo {
17   kern_return_t (^block)(void) = ^ __attribute__((mig_server_routine)) { // no-warning
18     return KERN_SUCCESS;
19   };
21   // FIXME: Warn that this block doesn't return a kern_return_t.
22   void (^invalid_block)(void) = ^ __attribute__((mig_server_routine)) {};
24   return block();
26 - (void)bar_void {
28 - (int)bar_int {
29   return 0;
31 @end