mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
163 B
Kotlin
Vendored
13 lines
163 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
fun test() {
|
|
val i = 1
|
|
val test = Test()
|
|
foo(test.qux<caret>(i))
|
|
}
|
|
|
|
fun foo(i: Int) {}
|
|
|
|
class Test {
|
|
fun qux(i: Int) = 1
|
|
}
|