diff options
Diffstat (limited to 'libcxx/test/containers/sequences/deque/deque.cons/default.pass.cpp')
| -rw-r--r-- | libcxx/test/containers/sequences/deque/deque.cons/default.pass.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libcxx/test/containers/sequences/deque/deque.cons/default.pass.cpp b/libcxx/test/containers/sequences/deque/deque.cons/default.pass.cpp index 4ee40bc6556..910421c6fc3 100644 --- a/libcxx/test/containers/sequences/deque/deque.cons/default.pass.cpp +++ b/libcxx/test/containers/sequences/deque/deque.cons/default.pass.cpp @@ -16,6 +16,7 @@ #include "../../../stack_allocator.h" #include "../../../NotConstructible.h" +#include "../../../min_allocator.h" template <class T, class Allocator> void @@ -29,4 +30,8 @@ int main() { test<int, std::allocator<int> >(); test<NotConstructible, stack_allocator<NotConstructible, 1> >(); +#if __cplusplus >= 201103L + test<int, min_allocator<int> >(); + test<NotConstructible, min_allocator<NotConstructible> >(); +#endif } |

