Files
kotlin-fork/compiler/testData/codegen/box/inference/builderInference/callableReferencesProperCompletion.kt
T
Ivan Kylchik c7435ba760 Replace all occurrences of WITH_RUNTIME with WITH_STDLIB
We are going to deprecate `WITH_RUNTIME` directive. The main reason
behind this change is that `WITH_STDLIB` directive better describes
its meaning, specifically it will add kotlin stdlib to test's classpath.
2021-11-17 15:26:38 +03:00

72 lines
1.1 KiB
Kotlin
Vendored

// WITH_STDLIB
fun nonGenericId(x: Any?) = x
fun <T> id(x: T) = x
fun test1(): Sequence<String> = sequence {
yield("")
this::class
}
fun <T> sequence2(block: suspend SequenceScope<T>.() -> Unit): Sequence<T> = Sequence { iterator(block) }
fun foo() {
sequence2<String> {
id(this::class)
}
}
fun test2(): Sequence<String> = sequence {
yield("")
id(this::class)
}
fun test3(): Sequence<String> = sequence {
yield("")
nonGenericId(this::class)
}
fun test4(): Sequence<String> = sequence {
yield("")
this::`yield`
}
fun test5(): Sequence<String> = sequence {
yield("")
id(this::`yield`)
}
fun test6(): Sequence<String> = sequence {
yield("")
nonGenericId(this::`yield`)
}
fun test7(): Sequence<String> = sequence {
yield("")
::`yield`
}
fun test8(): Sequence<String> = sequence {
yield("")
id(::`yield`)
}
fun test9(): Sequence<String> = sequence {
yield("")
nonGenericId(::`yield`)
}
fun box(): String {
test1()
test2()
test3()
test4()
test5()
test6()
test7()
test8()
test9()
return "OK"
}