33e6a85a2d
We exclude testData pattern from copyright scope
11 lines
161 B
Kotlin
Vendored
11 lines
161 B
Kotlin
Vendored
open class Foo {
|
|
fun foo() {
|
|
if (this is Bar) {
|
|
<expr>consume(this)</expr>
|
|
}
|
|
}
|
|
}
|
|
|
|
class Bar : Foo()
|
|
|
|
fun consume(obj: Bar) {} |