Mark the template deduction tests as UNSUPPORTED on clang 5, because it deduces the wrong type.

llvm-svn: 333376
This commit is contained in:
Marshall Clow 2018-05-28 15:42:47 +00:00
parent 8af2e690f3
commit aefe07a4c1
2 changed files with 6 additions and 1 deletions

View File

@ -9,8 +9,10 @@
// <queue>
// 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>
// queue(Container) -> queue<typename Container::value_type, Container>;

View File

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