33e6a85a2d
We exclude testData pattern from copyright scope
9 lines
126 B
Kotlin
Vendored
9 lines
126 B
Kotlin
Vendored
interface Foo {}
|
|
|
|
fun Any.test() {
|
|
if (this is Foo) {
|
|
<expr>consume(this)</expr>
|
|
}
|
|
}
|
|
|
|
fun consume(obj: Foo) {} |