Files
kotlin-fork/compiler/testData/diagnostics/tests/declarationChecks/nameWithDangerousCharacters.fir.kt
T
Alexander Udalov ba948cda38 Report warning on characters which can cause problems on Windows
As soon as we fix KT-17438, this warning will be turned into an error.
2020-07-02 21:19:28 +02:00

13 lines
136 B
Kotlin
Vendored

class `A?B`
class `A*B`
class `A"B`
class `A|B`
class `A%B`
fun `?*"|%`(): Int {
val `?` = 0
return `?`
}
val `"a"+"b"` = "c"