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, 10 insertions, 0 deletions
diff --git a/test/pending/pos/t1987/b.scala b/test/pending/pos/t1987/b.scala
new file mode 100644
index 0000000000..a469ca6ea8
--- /dev/null
+++ b/test/pending/pos/t1987/b.scala
@@ -0,0 +1,10 @@
+// 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
+}