llvm-capstone/clang/test/Preprocessor/pragma_microsoft.cpp
Reid Kleckner 4d185105e9 Accept #pragma warning(push, 0) without warning
This partially addresses PR17435, but it doesn't actually implement the
pragma.  If we implement it, we should map levels 1-4 to something like
-Wall and level 0 to something like -w.

llvm-svn: 191833
2013-10-02 15:19:23 +00:00

4 lines
156 B
C++

// RUN: %clang_cc1 %s -fsyntax-only -std=c++11 -verify -fms-extensions
#pragma warning(push, 4_D) // expected-warning {{requires a level between 0 and 4}}