Closed
Description
dotty> (1, x => 2): (Int, Int => Int)
^
(1, x => 2): (Int, Int => Int)
<console>:5: error: missing parameter type for parameter x, expected = T2
scala> (1, x => 2): (Int, Int => Int)
res0: (Int, Int => Int) = (1,<function1>)
This issue is related to #1366 and is probably a further refinement of fix #1371.
This code was executed with #1371.