summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
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]]
+ }
+}