mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
8 lines
218 B
Kotlin
Vendored
8 lines
218 B
Kotlin
Vendored
// "Create parameter 'foo'" "false"
|
|
// ERROR: Unresolved reference: foo
|
|
// ACTION: Create extension function 'Int.foo'
|
|
// ACTION: Replace infix call with ordinary call
|
|
// WITH_RUNTIME
|
|
fun refer() {
|
|
1 <caret>foo 2
|
|
} |