Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
samConversions
/
samConversionWithSafeCallAndInference.kt
blob: ed257991c59399983b088b725eb0d7693ca2e796 [
file
]
// FIR_IDENTICAL
// FULL_JDK
// SKIP_TXT
// ISSUE: KT-56663
import
java
.
util
.
function
.
Supplier
class
Panel
(
supplier
:
Supplier
<
String
>?)
fun main
(
s
:
String
?)
{
Panel
(
s
?.
let
{
{
it
}
})
}