Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/kt1461.kt
T
2013-12-11 19:53:50 +04:00

18 lines
569 B
Kotlin

//KT-1461 Front-end complains on overload resolution when superclass property is accessed from string template and implicit type cast is performed
package f
open class Super(val property : String) {}
class Sub(str : String) : Super(str) {}
fun foo(sup : Super, sub : Sub) {
if (sup is Sub) {
println("${<!DEBUG_INFO_AUTOCAST!>sup<!>.property}")
println(<!DEBUG_INFO_AUTOCAST!>sup<!>.property)
}
println("${sub.property}")
println(sub.property)
}
//from library
fun println(<!UNUSED_PARAMETER!>message<!> : Any?) { throw Exception() }