diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-08-24 17:37:53 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-08-24 17:37:53 +0000 |
commit | e947f967d1e30b3973f8a789e682da57481a5ece (patch) | |
tree | d05acd9c81f71323c19b08b989291f03b5866e93 /test/std/containers/sequences/vector.bool/construct_default.pass.cpp | |
parent | a9eb25783e00a819962a7f2b5755c203894de36b (diff) |
Vendor import of libc++ release_39 branch r279477:vendor/libc++/libc++-release_390-r280324vendor/libc++/libc++-release_39-r279689vendor/libc++/libc++-release_39-r279477
Notes
Notes:
svn path=/vendor/libc++/dist/; revision=304765
svn path=/vendor/libc++/libc++-release_390-r280324/; revision=305295; tag=vendor/libc++/libc++-release_390-r280324
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 } |