summaryrefslogtreecommitdiff
path: root/test/pending/pos/t1987/b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t1987/b.scala')
-rw-r--r--test/pending/pos/t1987/b.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/pending/pos/t1987/b.scala b/test/pending/pos/t1987/b.scala
deleted file mode 100644
index a469ca6ea8..0000000000
--- a/test/pending/pos/t1987/b.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-// compile with t1987a.scala
-
-package bug.packageb
-// Note that the overloading works if instead of being in the package we import it:
-// replace the above line with import bug.packageb._
-
-class Client {
- val x = func(1) // doesn't compile: type mismatch; found: Int(1) required: String
- val y = func("1") // compiles
-}