diff options
Diffstat (limited to 'test/std/containers/sequences/vector.bool/construct_default.pass.cpp')
-rw-r--r-- | test/std/containers/sequences/vector.bool/construct_default.pass.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/std/containers/sequences/vector.bool/construct_default.pass.cpp b/test/std/containers/sequences/vector.bool/construct_default.pass.cpp index 983d363d1940..a18ba8fbaab7 100644 --- a/test/std/containers/sequences/vector.bool/construct_default.pass.cpp +++ b/test/std/containers/sequences/vector.bool/construct_default.pass.cpp @@ -66,5 +66,9 @@ int main() test0<std::vector<bool, min_allocator<bool>> >(); test1<std::vector<bool, min_allocator<bool> > >(min_allocator<bool>()); } + { + test0<std::vector<bool, explicit_allocator<bool>> >(); + test1<std::vector<bool, explicit_allocator<bool> > >(explicit_allocator<bool>()); + } #endif } |