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