diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-04-03 20:06:31 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-04-03 20:06:31 +0000 |
commit | e4bafbee25a64f18c273028ca3b7d1b581d6c871 (patch) | |
tree | c41bf8d87dc2dc7c9d85a7b1bc7af9e244a7112b /libcxx/test/containers/associative/multiset | |
parent | dbe14303da09c0b6885fd9b8fe2b99a4d100dcaf (diff) | |
download | bcm5719-llvm-e4bafbee25a64f18c273028ca3b7d1b581d6c871.tar.gz bcm5719-llvm-e4bafbee25a64f18c273028ca3b7d1b581d6c871.zip |
... And these wonderful tests.
llvm-svn: 128797
Diffstat (limited to 'libcxx/test/containers/associative/multiset')
-rw-r--r-- | libcxx/test/containers/associative/multiset/multiset.cons/default_recursive.pass.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libcxx/test/containers/associative/multiset/multiset.cons/default_recursive.pass.cpp b/libcxx/test/containers/associative/multiset/multiset.cons/default_recursive.pass.cpp new file mode 100644 index 00000000000..95e3e1944db --- /dev/null +++ b/libcxx/test/containers/associative/multiset/multiset.cons/default_recursive.pass.cpp @@ -0,0 +1,24 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +// <set> + +// class multiset + +// multiset(); + +#include <set> +#include <cassert> + +int main() +{ + std::multiset<std::multiset<int> > m; + assert(m.empty()); + assert(m.begin() == m.end()); +} |