aboutsummaryrefslogtreecommitdiff
path: root/test/containers.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/containers.cc')
-rw-r--r--test/containers.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/containers.cc b/test/containers.cc
index 059125ac..adb58317 100644
--- a/test/containers.cc
+++ b/test/containers.cc
@@ -47,6 +47,10 @@ void testVector ()
v.put (new String ("three"));
puts (v.toString());
+
+ v.sort ();
+
+ puts (v.toString());
}
int main (int argc, char *argv[])