2ecba6ac39
This directive anyway does not make test run twice with OI, and with NI It only once run the test with specific settings (// LANGUAGE) and ignores irrelevant (OI or NI tags)
8 lines
119 B
Kotlin
Vendored
8 lines
119 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_VARIABLE
|
|
|
|
fun <T> materialize(): T = TODO()
|
|
|
|
fun main() {
|
|
val x = run { materialize() }
|
|
}
|