summaryrefslogtreecommitdiff
path: root/test/files/run/delay-bad.check
diff options
context:
space:
mode:
authorAleksandar Prokopec <axel22@gmail.com>2012-04-02 13:16:09 +0200
committerAleksandar Prokopec <axel22@gmail.com>2012-04-02 13:16:09 +0200
commitde3bd754676fbed0b6c69ca3d676b72bc276e925 (patch)
tree1d18a7f8c193fda503d63d286ddcf561842d1091 /test/files/run/delay-bad.check
parentc14766c1affe968788c77fea45ae042d71038472 (diff)
parentf7535f72903f083b2444fb1d0b73363efa5482e9 (diff)
downloadscala-de3bd754676fbed0b6c69ca3d676b72bc276e925.tar.gz
scala-de3bd754676fbed0b6c69ca3d676b72bc276e925.tar.bz2
scala-de3bd754676fbed0b6c69ca3d676b72bc276e925.zip
Merge branch 'master' into feature/collection-concurrent
Conflicts: src/library/scala/collection/JavaConversions.scala src/library/scala/collection/JavaConverters.scala Add one test for concurrent map conversion.
Diffstat (limited to 'test/files/run/delay-bad.check')
-rw-r--r--test/files/run/delay-bad.check47
1 files changed, 47 insertions, 0 deletions
diff --git a/test/files/run/delay-bad.check b/test/files/run/delay-bad.check
new file mode 100644
index 0000000000..9d9c828a03
--- /dev/null
+++ b/test/files/run/delay-bad.check
@@ -0,0 +1,47 @@
+
+
+// new C { }
+-A -B -C
+
+// new C { 5 }
+-A -B -C
+ A+ B+ C+
+
+// new D()
+-A -B -C -D
+ A+ B+ C+ D+
+
+// new D() { }
+-A -B -C -D
+ A+ B+ C+ D+
+
+// new D() { val x = 5 }
+-A -B -C -D
+ A+ B+ C+ D+
+ A+ B+ C+ D+
+
+// new { val x = 5 } with D()
+-A -B -C -D
+ A+ B+ C+ D+
+
+// new E() { val x = 5 }
+-A -B -C -D
+ A+ B+ C+ D+ E+ -E
+ A+ B+ C+ D+ E+
+ A+ B+ C+ D+ E+
+
+// new { val x = 5 } with E()
+-A -B -C -D
+ A+ B+ C+ D+ E+ -E
+ A+ B+ C+ D+ E+
+
+// new { val x = 5 } with E() { }
+-A -B -C -D
+ A+ B+ C+ D+ E+ -E
+ A+ B+ C+ D+ E+
+
+// new { val x = 5 } with E() { 5 }
+-A -B -C -D
+ A+ B+ C+ D+ E+ -E
+ A+ B+ C+ D+ E+
+ A+ B+ C+ D+ E+