xref: /aosp_15_r20/external/clang/test/Sema/attr-nodebug.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 %s -verify -fsyntax-only
2 
3 int a __attribute__((nodebug));
4 
b(int p)5 void b(int p __attribute__((nodebug))) { // expected-warning {{'nodebug' attribute only applies to variables and functions}}
6   int b __attribute__((nodebug));
7 }
8 
9 void t1() __attribute__((nodebug));
10 
11 void t2() __attribute__((nodebug(2))); // expected-error {{'nodebug' attribute takes no arguments}}
12