Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
explicitDefinitelyNotNullableViaIntersection
/
starProjection.fir.kt
blob: 3bbd01c0414a0f2bfd201cdb359317a770894a93 [
file
]
// ISSUE: KT-58751
class
Result
<
out
T
>
interface
Convert
<
T
>
{
fun convert
(
str
:
String
):
Result
<
T
&
Any
>
}
fun
Convert
<*>.
cnv
(
value
:
String
):
Result
<
Any
>
=
convert
(
value
)