Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
75d8a5bca606366254123abd80c77147a3d426a6
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
ambiguityWithUnsignedSpecificity.kt
blob: b2a75e681c3f43501c529564bd2a062e5d415a42 [
file
]
// FIR_IDENTICAL
// ISSUE: KT-57568
fun
<
T
,
K
>
T
.
convert
():
K
=
null
!!
fun of
(
size
:
ULong
)
{
of
(
size
.
convert
())
}
fun of
(
size
:
Int
)
{}
fun of
(
size
:
Long
)
{}