33e6a85a2d
We exclude testData pattern from copyright scope
24 lines
352 B
Kotlin
Vendored
24 lines
352 B
Kotlin
Vendored
open class TopLevelClass {
|
|
open fun foo(i: Int) {
|
|
|
|
}
|
|
|
|
open fun boo(b: String) {
|
|
|
|
}
|
|
}
|
|
|
|
open class AnotherTopLevelClass : TopLevelClass() {
|
|
override fun foo(i: Int) {
|
|
|
|
}
|
|
}
|
|
|
|
fun reso<caret>lveMe() {
|
|
class LocalClass : AnotherTopLevelClass() {
|
|
override fun foo(i: Int) {
|
|
}
|
|
|
|
class NestedLocalClass
|
|
}
|
|
} |