mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
15 lines
214 B
Kotlin
Vendored
15 lines
214 B
Kotlin
Vendored
fun <R> materialize(): R = null!!
|
|
|
|
fun test_1() {
|
|
<!UNRESOLVED_REFERENCE!>myRun<!> {
|
|
val x = 1
|
|
x * 2
|
|
}
|
|
}
|
|
|
|
fun test_2() {
|
|
<!UNRESOLVED_REFERENCE!>myRun<!> {
|
|
materialize()
|
|
}
|
|
}
|