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:
Eric Fiselier 2017-01-05 01:34:14 +00:00
parent 76a01ea34d
commit 07aaf62a0f
1 changed files with 1 additions and 1 deletions

View File

@ -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>