Files
kotlin-fork/compiler/testData/diagnostics/tests/override/kt880.kt
T
Nikolay Krasko 54ae3afcde KT-880 Overload resolution ambiguity
#KT-880 Fixed
2013-02-11 16:09:23 +04:00

16 lines
296 B
Kotlin

// KT-880 Overload resolution ambiguity
public trait I {
open fun test() : Unit
}
abstract public class A() {
open public fun test() : Unit {
}
}
public open class T() : A(), I {
open fun main() : Unit {
test() // Test no "Overload resolution ambiguity" is here
}
}