Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
overload
/
nullableIntVsLongOverload.fir.kt
blob: f83cd6b0e59e99daea732e5e444eb8f0ea4e106e [
file
]
// RUN_PIPELINE_TILL: BACKEND
// ISSUE: KT-83635
fun foo
(
x
:
Long
):
Int
=
1
fun foo
(
x
:
Int
?):
String
=
""
fun main
()
{
foo
(
1
).
length
}
/* GENERATED_FIR_TAGS: functionDeclaration, integerLiteral, nullableType, stringLiteral */