Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/regressions/kt1944.kt
T
Stanislav Erokhin 298a075381 Minor. removed functions which declared in Standard.kt from diagnostic testdata.
Removed declaration for functions: TODO, run, with, apply, let.
2016-01-25 19:13:31 +03:00

15 lines
204 B
Kotlin
Vendored

// !CHECK_TYPE
//KT-1944 Inference fails on run()
package j
class P {
var x : Int = 0
private set
fun foo() {
val r = run {x = 5} // ERROR
checkSubtype<Unit>(r)
}
}