806aa7d4c1
So #KT-19428 Fixed
15 lines
207 B
Kotlin
Vendored
15 lines
207 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
interface First {
|
|
fun foo() = 2
|
|
}
|
|
interface Second {
|
|
fun foo() = 3
|
|
}
|
|
|
|
class Diamond : First, Second {
|
|
override <caret>fun foo(): Int {
|
|
return super<First>.foo()
|
|
}
|
|
}
|