33e6a85a2d
We exclude testData pattern from copyright scope
12 lines
139 B
Kotlin
Vendored
12 lines
139 B
Kotlin
Vendored
interface Foo {
|
|
fun foo(): Int
|
|
}
|
|
|
|
interface Bar {
|
|
fun bar(): Int
|
|
}
|
|
|
|
context(Foo, Bar)
|
|
fun test() {
|
|
<expr>foo() + bar()</expr>
|
|
} |