summaryrefslogtreecommitdiff
path: root/test/files/neg/t3995.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-12-05 00:07:28 +0100
committerJason Zaugg <jzaugg@gmail.com>2012-12-05 00:07:28 +0100
commit90efa6bc35f0e4e1d37389af5a681836a03b68e5 (patch)
tree59f6161c0164b065fbf0340f153f68247d99a137 /test/files/neg/t3995.check
parentfd57069a3a49de1757a518b573a0cd8cb98bbbd5 (diff)
downloadscala-90efa6bc35f0e4e1d37389af5a681836a03b68e5.tar.gz
scala-90efa6bc35f0e4e1d37389af5a681836a03b68e5.tar.bz2
scala-90efa6bc35f0e4e1d37389af5a681836a03b68e5.zip
SI-3995 Exclude companions with an existential prefix.
In `(qual: Q).apply(expr)` where `expr` must be implictily converted to a path dependent type `T` defined in `qual`, we were looking for companion implicits via a path prefixed by an existential skolem `_1`. These aren't much good to us, as when we try to feed them into `mkAttributedQualifer`, a crash rightly ensues. This commit excludes companions prefixed by an existentially bound path.
Diffstat (limited to 'test/files/neg/t3995.check')
-rw-r--r--test/files/neg/t3995.check6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/neg/t3995.check b/test/files/neg/t3995.check
new file mode 100644
index 0000000000..844150a528
--- /dev/null
+++ b/test/files/neg/t3995.check
@@ -0,0 +1,6 @@
+t3995.scala:24: error: type mismatch;
+ found : String("")
+ required: _1.F0 where val _1: Lift
+ (new Lift).apply("")
+ ^
+one error found