Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
)
{}