aboutsummaryrefslogtreecommitdiff
path: root/tests/small-vector/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/small-vector/driver.cxx')
-rw-r--r--tests/small-vector/driver.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/small-vector/driver.cxx b/tests/small-vector/driver.cxx
index d79a03b..a8326be 100644
--- a/tests/small-vector/driver.cxx
+++ b/tests/small-vector/driver.cxx
@@ -111,6 +111,7 @@ main ()
s1.emplace_back ("abc");
vector s2 (move (s1));
assert (s2[0] == "abc" && s2.capacity () == 2 && small (s2));
+ assert (s1.empty ()); // The source vector must be empty now.
}
{