Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
overload
/
lambdasWithDifferentParameterNumber.fir.kt
blob: c8a0d55aec4c4dec25fe0e0a17f01c5f60e7d0c6 [
file
]
// ISSUE: KT-57477
fun f
(
block
:
(
Int
)
->
Unit
)
{}
fun f
(
block
:
(
Int
,
Int
)
->
Unit
)
{}
fun g
(
block
:
Int
.()
->
Unit
)
{}
fun g
(
block
:
(
Int
,
Int
)
->
Unit
)
{}
fun test
()
{
f
{}
g
{}
}