14 lines
169 B
Kotlin
Vendored
14 lines
169 B
Kotlin
Vendored
val ``: Int = 1
|
|
|
|
fun ``() {}
|
|
|
|
class `` {}
|
|
|
|
fun <``> f() {}
|
|
|
|
class Data(val x: Int, val y: Int)
|
|
fun g() {
|
|
for (`` in 1..10) {
|
|
val (``, y) = Data(1, 2)
|
|
}
|
|
} |