aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/implicitDefs.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/neg/implicitDefs.scala')
-rw-r--r--tests/neg/implicitDefs.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/neg/implicitDefs.scala b/tests/neg/implicitDefs.scala
index 28ac32656..1489344c8 100644
--- a/tests/neg/implicitDefs.scala
+++ b/tests/neg/implicitDefs.scala
@@ -5,7 +5,7 @@ import Predef.{any2stringadd => _, StringAdd => _, _}
object implicitDefs {
- implicit val x = 2
- implicit def y(x: Int) = 3
- implicit def z(a: x.type): String = ""
+ implicit val x = 2 // error: type of implicit definition needs to be given explicitly
+ implicit def y(x: Int) = 3 // error: result type of implicit definition needs to be given explicitly
+ implicit def z(a: x.type): String = "" // error: implicit conversion may not have a parameter of singleton type
}