fix parse ``

This commit is contained in:
Michael Nedzelsky
2015-10-02 21:29:58 +03:00
parent 7f0fbb4577
commit 1818e9f1bd
4 changed files with 193 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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)
}
}