33e6a85a2d
We exclude testData pattern from copyright scope
11 lines
133 B
Kotlin
Vendored
11 lines
133 B
Kotlin
Vendored
fun resolve<caret>Me() {
|
|
receive(A(42))
|
|
}
|
|
|
|
fun receive(value: A){}
|
|
|
|
class A {
|
|
constructor(x: Int) {
|
|
val a = x
|
|
}
|
|
} |