]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Sema/attr-nodebug.c
Vendor import of clang trunk r161861:
[FreeBSD/FreeBSD.git] / test / Sema / attr-nodebug.c
1 // RUN: %clang_cc1 %s -verify -fsyntax-only
2
3 int a __attribute__((nodebug));
4
5 void b() {
6   int b __attribute__((nodebug)); // expected-warning {{'nodebug' only applies to variables with static storage duration and functions}}
7
8
9 void t1() __attribute__((nodebug));
10
11 void t2() __attribute__((nodebug(2))); // expected-error {{attribute takes no arguments}}