Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt1489_1728.kt
T
2014-05-29 21:24:05 +04:00

31 lines
609 B
Kotlin

package kt606_dependents
//KT-1489 Code analyzer fails with assertion
trait AutoCloseable{
fun close()
}
class C {
class Resource : AutoCloseable {
override fun close() {
throw UnsupportedOperationException()
}
}
fun foo<X : AutoCloseable>(<!UNUSED_PARAMETER!>x<!> : X, <!UNUSED_PARAMETER!>body<!> : (X) -> Unit) {
}
fun p() : Resource? = null
fun bar() {
<!TYPE_INFERENCE_UPPER_BOUND_VIOLATED!>foo<!>(p()) {
}
}
}
//KT-1728 Can't invoke extension property as a function
val Int.ext : () -> Int get() = { 5 }
val x = 1.ext()