summaryrefslogtreecommitdiff
path: root/test/pending/run/t4728.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t4728.scala')
-rw-r--r--test/pending/run/t4728.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/pending/run/t4728.scala b/test/pending/run/t4728.scala
deleted file mode 100644
index 36f7860613..0000000000
--- a/test/pending/run/t4728.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-class X
-class Y extends X
-object Ambiguous {
- def f(x: X) = 1
- def f(ys: Y*) = 2
-}
-
-object Test extends App {
- println(Ambiguous.f(new X))
- println(Ambiguous.f(new Y))
-} \ No newline at end of file