33e6a85a2d
We exclude testData pattern from copyright scope
39 lines
607 B
Kotlin
Vendored
39 lines
607 B
Kotlin
Vendored
interface Foo1 {
|
|
fun foo()
|
|
fun bar()
|
|
val str: String
|
|
|
|
class ClassFromInterface
|
|
}
|
|
|
|
interface Foo2 : Foo1 {
|
|
fun foo(i: Int)
|
|
fun bar(s: String)
|
|
val isBoo: Boolean
|
|
}
|
|
|
|
interface Foo3 : Foo1 {
|
|
fun foo(i: Int)
|
|
fun bar(s: String)
|
|
val isBoo: Boolean
|
|
}
|
|
|
|
abstract class OuterClass : Foo1 {
|
|
val s<caret>t: String = 1
|
|
class SimpleNestedClass {
|
|
fun foo() {
|
|
|
|
}
|
|
}
|
|
|
|
abstract class NestedClass : Foo2 {
|
|
override fun foo() {}
|
|
}
|
|
|
|
abstract class AnotherNestedClass : NestedClass() {
|
|
override fun bar(s: String) {
|
|
|
|
}
|
|
}
|
|
}
|