fix tests for quoted names

This commit is contained in:
Michael Nedzelsky
2015-10-08 20:53:45 +03:00
parent 2a97c28491
commit 7f0fbb4577
8 changed files with 20 additions and 20 deletions
@@ -1,4 +1,4 @@
// "Create class 'A\u00A0'" "true"
// "Create class 'A!u00A0'" "true"
fun test() {
val t = <caret>`A\u00A0`(1)
val t = <caret>`A!u00A0`(1)
}
@@ -1,8 +1,8 @@
// "Create class 'A\u00A0'" "true"
// "Create class 'A!u00A0'" "true"
fun test() {
val t = `A\u00A0`(1)
val t = `A!u00A0`(1)
}
class `A\u00A0`(i: Int) {
class `A!u00A0`(i: Int) {
}