9be219b69c
Also fix typo in "inapplicable infix" diagnostic message
5 lines
185 B
Kotlin
Vendored
5 lines
185 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// ERROR: 'infix' modifier is inapplicable on this function: must be a member or an extension function
|
|
infix fun id(s: String) = s
|
|
val x = <caret>id("0").get(0)
|