summaryrefslogtreecommitdiff
path: root/test/files/pos/t7782.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-09-04 16:20:25 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-09-04 16:20:25 +0200
commitf4ccefe6a41897e9aa5fab72d86d9b481785baec (patch)
tree22f9f9144842107a264b0d0bb33f3d74d8530c85 /test/files/pos/t7782.scala
parent502b9f0551d1216db72f91031aab1113e5a39f4a (diff)
parentd46519da657ada39d9928308709cdb80ddcd53ce (diff)
downloadscala-f4ccefe6a41897e9aa5fab72d86d9b481785baec.tar.gz
scala-f4ccefe6a41897e9aa5fab72d86d9b481785baec.tar.bz2
scala-f4ccefe6a41897e9aa5fab72d86d9b481785baec.zip
Merge remote-tracking branch 'origin/2.10.x' into merge/2.10.x-to-2.10.3
Diffstat (limited to 'test/files/pos/t7782.scala')
-rw-r--r--test/files/pos/t7782.scala25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/files/pos/t7782.scala b/test/files/pos/t7782.scala
new file mode 100644
index 0000000000..037bdad673
--- /dev/null
+++ b/test/files/pos/t7782.scala
@@ -0,0 +1,25 @@
+package pack
+
+object Test {
+ import O.empty
+ empty // this will trigger completion of `test`
+ // with skolemizationLevel = 1
+}
+
+object O {
+ // order matters (!!!)
+
+ // this order breaks under 2.10.x
+ def empty[E]: C[E] = ???
+ def empty(implicit a: Any): Any = ???
+}
+
+abstract class C[E] {
+ def foo[BB](f: BB)
+ def test[B](f: B): Any = foo(f)
+ // error: no type parameters for method foo: (<param> f: BB)scala.this.Unit exist so that it can be applied to arguments (B&1)
+ // --- because ---
+ // argument expression's type is not compatible with formal parameter type;
+ // found : B&1
+ // required: ?BB
+}