forked from OSchip/llvm-project
Fix XPASS buildbot failure related to structured bindings
The test was previously set to XFAIL if __cpp_structured_bindings wasn't defined. However there are Clang 4.0 versions which do not define this macro but do provide structured bindings, which causes the test to pass unexpectedly. This patch changes the XFAIL to an UNSUPPORTED. llvm-svn: 291060
This commit is contained in:
parent
76a01ea34d
commit
07aaf62a0f
|
@ -16,7 +16,7 @@
|
|||
// : public integral_constant<size_t, sizeof...(Types)> { };
|
||||
|
||||
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||
// XFAIL: libcpp-no-structured-bindings
|
||||
// UNSUPPORTED: libcpp-no-structured-bindings
|
||||
|
||||
#include <tuple>
|
||||
#include <array>
|
||||
|
|
Loading…
Reference in New Issue