Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
nullabilityAndSmartCasts
/
funcLiteralArgsInsideAmbiguity.fir.kt
blob: 53943120a06971b145b1c4c586983b7e75a83a73 [
file
]
// DIAGNOSTICS: -UNUSED_PARAMETER -UNUSED_VARIABLE
package
d
fun bar
()
{
val i
:
Int
?
=
42
if
(
i
!=
null
)
{
<!
OVERLOAD_RESOLUTION_AMBIGUITY
!>
doSmth1
<!>
{
val x
=
i
+
1
}
}
}
fun doSmth1
(
f
:
()->
Unit
)
{}
fun doSmth1
(
g
:
(
Int
)->
Unit
)
{}