Skip to content

Commit 0802f47

Browse files
committed
Fix test
1 parent 4d6b82e commit 0802f47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/test/dotty/tools/dotc/reporting/UserDefinedErrorMessages.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class UserDefinedErrorMessages extends ErrorMessagesTest {
113113
|class C {
114114
| @annotation.implicitAmbiguous("msg A=${A}")
115115
| implicit def f[A](implicit x: String): Int = 1
116-
| implicit def g: Int = 2
116+
| implicit def g(implicit x: String): Int = 2
117117
| def test: Unit = {
118118
| implicit val s: String = "Hello"
119119
| implicitly[Int]

0 commit comments

Comments
 (0)