summaryrefslogtreecommitdiff
path: root/test/files/run/intmap.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/intmap.scala')
-rw-r--r--test/files/run/intmap.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/run/intmap.scala b/test/files/run/intmap.scala
new file mode 100644
index 0000000000..8c3e0b2ca3
--- /dev/null
+++ b/test/files/run/intmap.scala
@@ -0,0 +1,8 @@
+object Test extends Application{
+ import scala.collection.immutable.IntMap;
+
+ val it = IntMap(8 -> 2, 11 -> 3, 1 -> 2, 7 -> 13);
+
+ assert(it.firstKey == 1);
+ assert(it.lastKey == 11);
+}