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

15 lines
251 B
Kotlin

// KT-1998 Strange "Overload resolution ambiguity"
object A {
val c : String = "test"
fun f(b: B): String {
return b.c // Test no "Overload resolution ambiguity" is reported here
}
}
class B
val B.c : String
get() = "test"