summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@epfl.ch>2014-02-26 13:17:29 +0100
committerLukas Rytz <lukas.rytz@epfl.ch>2014-02-26 13:17:29 +0100
commit9d2d01ffb6412ec3f76dfec223c9c675ab058d88 (patch)
tree111759c567dce6ca662918e032bf1f7c1af55df8 /test/pending
parentb4ff1e934f36af6792b29b3d850cee836aa7b050 (diff)
downloadscala-9d2d01ffb6412ec3f76dfec223c9c675ab058d88.tar.gz
scala-9d2d01ffb6412ec3f76dfec223c9c675ab058d88.tar.bz2
scala-9d2d01ffb6412ec3f76dfec223c9c675ab058d88.zip
SI-4728 test case
Diffstat (limited to 'test/pending')
-rw-r--r--test/pending/run/t4728.check2
-rw-r--r--test/pending/run/t4728.scala11
2 files changed, 0 insertions, 13 deletions
diff --git a/test/pending/run/t4728.check b/test/pending/run/t4728.check
deleted file mode 100644
index 7a754f414c..0000000000
--- a/test/pending/run/t4728.check
+++ /dev/null
@@ -1,2 +0,0 @@
-1
-2 \ No newline at end of file
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