summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@epfl.ch>2010-11-02 00:14:50 +0000
committerHubert Plociniczak <hubert.plociniczak@epfl.ch>2010-11-02 00:14:50 +0000
commit62614a6f9f7c335cf53f464ce272ac05979f5647 (patch)
treed70b2573a1d6559e998211b0e7ca7ef88f945aaa /test
parentf4e000f7f08086727cec4c810873379de8ab2624 (diff)
downloadscala-62614a6f9f7c335cf53f464ce272ac05979f5647.tar.gz
scala-62614a6f9f7c335cf53f464ce272ac05979f5647.tar.bz2
scala-62614a6f9f7c335cf53f464ce272ac05979f5647.zip
Closes #3927. No review
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/t3927.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/pos/t3927.scala b/test/files/pos/t3927.scala
new file mode 100644
index 0000000000..c1344febba
--- /dev/null
+++ b/test/files/pos/t3927.scala
@@ -0,0 +1,6 @@
+object A {
+ def x {
+ implicit lazy val e: Equiv[Int] = error("")
+ implicitly[Equiv[Int]]
+ }
+}