Files
kotlin-fork/analysis/low-level-api-fir/testdata/contextCollector/smartCasts/require.kt
T
2023-09-04 15:47:56 +00:00

10 lines
133 B
Kotlin

// WITH_STDLIB
interface Foo
fun test(obj: Any) {
require(obj is Foo)
<expr>consume(obj)</expr>
}
fun consume(obj: Any) {}