Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
codegen
/
box
/
funInterface
/
kt77685.kt
blob: 37d769564c8e98e36c406553cd8dd3e2b70ef177 [
file
]
// WITH_STDLIB
// FILE: lib.kt
fun
interface
Foo
:
suspend
()
->
Unit
// FILE: main.kt
import
kotlin
.
test
.*
val foo
=
Foo
{}
fun box
():
String
{
assertEquals
(
foo
,
foo
)
// Circumvent DCE.
return
"OK"
}