blob: fd35722f62b1cc659ca30b978e02e2dbfbe41610 [file] [log] [blame]
Aaron Ballman953e9852014-10-21 15:46:57 +00001// RUN: %clang_cc1 %s -std=c++11 -verify -fsyntax-only
Rafael Espindolac9d17592012-10-24 18:34:26 +00002// Note: most of the 'nodebug' tests are in attr-nodebug.c.
3
4// expected-no-diagnostics
5class c {
6 void t3() __attribute__((nodebug));
7};
Aaron Ballman953e9852014-10-21 15:46:57 +00008
9[[gnu::nodebug]] void f() {}