6752df189d
(cherry picked from commit 2744309)
4 lines
182 B
Kotlin
Vendored
4 lines
182 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// ERROR: infix modifier is inapplicable on this function: must be a member of an extension function
|
|
infix fun id(s: String) = s
|
|
val x = <caret>id("0").get(0) |