aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/promotion.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/promotion.scala')
-rw-r--r--tests/pending/run/promotion.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/pending/run/promotion.scala b/tests/pending/run/promotion.scala
deleted file mode 100644
index 9f3be9661..000000000
--- a/tests/pending/run/promotion.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-
-/** Test that unboxing and promotion (from int to double) work together.
- * Was bug 819.
- */
-object Test {
-
- def id[A](x: A): A = x;
- def main(args: Array[String]): Unit = {
- Console.println(id(1) * 2.0)
- Console.println(3.0 * id(2))
- Console.println(id(4.0) * 5)
- Console.println(6 * id(5.0))
- }
-}