wiwa opened this issue 5 years ago · 0 comments
Expected:
def foo = (x: (String, Int)) => x._2
Obtained:
def foo: (String, Int) => Int = (x: (String, Int)) => x._2
def foo: ((String, Int)) => Int = (x: (String, Int)) => x._2