Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
inference
/
kt12008.kt
blob: 76029eac7afd4aa17560949176bead27d7adc8c5 [
file
]
// FIR_IDENTICAL
// FULL_JDK
import
java
.
util
.*
fun foo
(
o
:
Optional
<
String
>)
{}
class
Test
(
nullable
:
String
?)
{
private
val nullableOptional
=
Optional
.
ofNullable
(
nullable
)
fun doIt
()
{
foo
(
nullableOptional
)
}
}