forked from OSchip/llvm-project
Mark the template deduction tests as UNSUPPORTED on clang 5, because it deduces the wrong type.
llvm-svn: 333376
This commit is contained in:
parent
8af2e690f3
commit
aefe07a4c1
|
|
@ -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>;
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue