Commit be92d5e9 authored by George Burgess IV's avatar George Burgess IV
Browse files

Add a test for diagnose_if.

Forgot to add this file as a part of r291418.

llvm-svn: 291493
parent 04b9853a
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
// RUN: %clang_cc1 -Wpedantic -fsyntax-only %s -verify

void foo() __attribute__((diagnose_if(1, "", "error"))); // expected-warning{{'diagnose_if' is a clang extension}}
void foo(int a) __attribute__((diagnose_if(a, "", "error"))); // expected-warning{{'diagnose_if' is a clang extension}}
// FIXME: When diagnose_if gets a CXX11 spelling, this should be enabled.
#if 0
[[clang::diagnose_if(a, "", "error")]] void foo(double a);
#endif