[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / clang / test / SemaCXX / diagnose_if-ext.cpp
blobd5625b501322e91d8a5a0745e29dea3f181d76f5
1 // RUN: %clang_cc1 -Wpedantic -fsyntax-only %s -verify
3 void foo() __attribute__((diagnose_if(1, "", "error"))); // expected-warning{{'diagnose_if' is a clang extension}}
4 void foo(int a) __attribute__((diagnose_if(a, "", "error"))); // expected-warning{{'diagnose_if' is a clang extension}}
5 // FIXME: When diagnose_if gets a CXX11 spelling, this should be enabled.
6 #if 0
7 [[clang::diagnose_if(a, "", "error")]] void foo(double a);
8 #endif