diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2018-05-28 15:42:47 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2018-05-28 15:42:47 +0000 |
commit | aefe07a4c142bf262d3b2e84b05dba26ac4893c0 (patch) | |
tree | baad135b259223c44475c387065edea1bbbe82e2 /libcxx/test/std/containers/container.adaptors/stack/stack.cons | |
parent | 8af2e690f3ef3295ff87d2584a0cb2dc4f302e68 (diff) | |
download | bcm5719-llvm-aefe07a4c142bf262d3b2e84b05dba26ac4893c0.tar.gz bcm5719-llvm-aefe07a4c142bf262d3b2e84b05dba26ac4893c0.zip |
Mark the template deduction tests as UNSUPPORTED on clang 5, because it deduces the wrong type.
llvm-svn: 333376
Diffstat (limited to 'libcxx/test/std/containers/container.adaptors/stack/stack.cons')
-rw-r--r-- | libcxx/test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcxx/test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp b/libcxx/test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp index 4ae11376b2b..675f95fcbc0 100644 --- a/libcxx/test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp +++ b/libcxx/test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp @@ -9,7 +9,10 @@ // <stack> // UNSUPPORTED: c++98, c++03, c++11, c++14 +// UNSUPPORTED: clang-5 // UNSUPPORTED: libcpp-no-deduction-guides +// Clang 5 will generate bad implicit deduction guides +// Specifically, for the copy constructor. // template<class Container> |