diff options
Diffstat (limited to 'test/SemaCXX/switch-implicit-fallthrough-cxx98.cpp')
-rw-r--r-- | test/SemaCXX/switch-implicit-fallthrough-cxx98.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/SemaCXX/switch-implicit-fallthrough-cxx98.cpp b/test/SemaCXX/switch-implicit-fallthrough-cxx98.cpp index 14ffcef..8b24c4a 100644 --- a/test/SemaCXX/switch-implicit-fallthrough-cxx98.cpp +++ b/test/SemaCXX/switch-implicit-fallthrough-cxx98.cpp @@ -1,5 +1,8 @@ // RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 -Wimplicit-fallthrough %s +// XFAIL: * +// NOTE: This test is marked XFAIL until we come up with a good language design +// for a worfklow to use this warning outside of C++11. int fallthrough(int n) { switch (n / 10) { |