Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
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
)