blob: fd35722f62b1cc659ca30b978e02e2dbfbe41610 [file] [log] [blame]
Stephen Hines176edba2014-12-01 14:53:08 -08001// RUN: %clang_cc1 %s -std=c++11 -verify -fsyntax-only
Rafael Espindola946fa652012-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};
Stephen Hines176edba2014-12-01 14:53:08 -08008
9[[gnu::nodebug]] void f() {}