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