xref: /minix3/external/bsd/llvm/dist/clang/test/SemaCXX/attr-nodebug.cpp (revision e985b929927b5932e3b68f4b50587d458900107a)
1 // RUN: %clang_cc1 %s -verify -fsyntax-only
2 // Note: most of the 'nodebug' tests are in attr-nodebug.c.
3 
4 // expected-no-diagnostics
5 class c {
6   void t3() __attribute__((nodebug));
7 };
8