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

12 lines
294 B
Kotlin

//KT-1358 Overload resolution ambiguity with autocast and generic function
package d
fun bar(a: Any?) {
if (a != null) {
a.foo() //overload resolution ambiguity
a.sure() //overload resolution ambiguity
}
}
fun <T : Any> T?.foo() {}
fun <T : Any> T?.sure() : T = this!!