Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
ir
/
irText
/
lambdas
/
samAdapter.kt
blob: 05ff00b5aca9d81491969504efa3dd9e053dd315 [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
// WITH_STDLIB
// TARGET_BACKEND: JVM
fun test1
()
{
val hello
=
Runnable
{
println
(
"Hello, world!"
)
}
hello
.
run
()
}