29ab166e1b
Render resolved call to a separate file
10 lines
75 B
Kotlin
10 lines
75 B
Kotlin
// !CALL: foo
|
|
|
|
class A {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun bar(a: A) {
|
|
a.foo()
|
|
}
|