33e6a85a2d
We exclude testData pattern from copyright scope
15 lines
225 B
Kotlin
Vendored
15 lines
225 B
Kotlin
Vendored
interface Foo1 : Foo2 {
|
|
fun foo()
|
|
val s<caret>tr: String
|
|
}
|
|
|
|
interface Foo2 : Foo3 {
|
|
override fun foo()
|
|
override val str: String
|
|
}
|
|
|
|
interface Foo3 : Foo1 {
|
|
override fun foo()
|
|
override val str: String
|
|
}
|