object Test {
implicit class Foo(i: Int, s: String)
}
Fails in scalac with
Foo.scala:2: error: implicit classes must accept exactly one primary constructor parameter
implicit class Foo(i: Int, s: String)
^
one error found
But not on dotc. This error should probably be emitted when desugaring the implicit class.
I'd like to give it a try.
Would you recommend to work on the #2464 first?
-V
I would start with this one. It might as well fix #2464
OK. Thanks, Allan.
Yes, you should start with this one.