3394097f47
To test production resolveToFirSymbol entry point ^KT-57850
11 lines
133 B
Kotlin
11 lines
133 B
Kotlin
fun resolve<caret>Me() {
|
|
receive(A(42))
|
|
}
|
|
|
|
fun receive(value: A){}
|
|
|
|
class A {
|
|
constructor(x: Int) {
|
|
val a = x
|
|
}
|
|
} |