a33f946c14
#KT-11115 Fixed (cherry picked from commit a3a2e57)
11 lines
120 B
Kotlin
Vendored
11 lines
120 B
Kotlin
Vendored
interface T {
|
|
fun getFoo(): String = ""
|
|
}
|
|
|
|
interface U {
|
|
fun getFoo(): String
|
|
}
|
|
|
|
class C1 : T, U {
|
|
<caret>
|
|
} |