Tested KT-2718 Package names that match Kotlin keywords should be escaped properly

This commit is contained in:
Valentin Kipyatkov
2015-02-19 18:47:46 +03:00
parent 2cc291efdb
commit b0d82bef7d
8 changed files with 32 additions and 0 deletions
@@ -0,0 +1,3 @@
package foo.`val`
class `var`
@@ -0,0 +1,3 @@
import foo.`val`.*
var v: `var`? = null
@@ -0,0 +1,3 @@
import foo.`val`.`var`
var v: `var`? = null