diff --git a/idea/testData/quickfix/createFromUsage/createClass/callExpression/quotedName.kt b/idea/testData/quickfix/createFromUsage/createClass/callExpression/quotedName.kt index 8c5242bfe27..3457ac10ea5 100644 --- a/idea/testData/quickfix/createFromUsage/createClass/callExpression/quotedName.kt +++ b/idea/testData/quickfix/createFromUsage/createClass/callExpression/quotedName.kt @@ -1,4 +1,4 @@ -// "Create class 'A\u00A0'" "true" +// "Create class 'A!u00A0'" "true" fun test() { - val t = `A\u00A0`(1) + val t = `A!u00A0`(1) } \ No newline at end of file diff --git a/idea/testData/quickfix/createFromUsage/createClass/callExpression/quotedName.kt.after b/idea/testData/quickfix/createFromUsage/createClass/callExpression/quotedName.kt.after index 2a8cc59c27b..da9a8af3d70 100644 --- a/idea/testData/quickfix/createFromUsage/createClass/callExpression/quotedName.kt.after +++ b/idea/testData/quickfix/createFromUsage/createClass/callExpression/quotedName.kt.after @@ -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) { } diff --git a/idea/testData/quickfix/createFromUsage/createFunction/binaryOperations/quotedName.kt b/idea/testData/quickfix/createFromUsage/createFunction/binaryOperations/quotedName.kt index fba85abe085..344eb33e65b 100644 --- a/idea/testData/quickfix/createFromUsage/createFunction/binaryOperations/quotedName.kt +++ b/idea/testData/quickfix/createFromUsage/createFunction/binaryOperations/quotedName.kt @@ -1,4 +1,4 @@ -// "Create extension function '\u00A0'" "true" +// "Create extension function '!u00A0'" "true" fun test() { - val t: Int = 1 `\u00A0` 2 + val t: Int = 1 `!u00A0` 2 } \ No newline at end of file diff --git a/idea/testData/quickfix/createFromUsage/createFunction/binaryOperations/quotedName.kt.after b/idea/testData/quickfix/createFromUsage/createFunction/binaryOperations/quotedName.kt.after index d64f4c72c14..ff0afe7ad79 100644 --- a/idea/testData/quickfix/createFromUsage/createFunction/binaryOperations/quotedName.kt.after +++ b/idea/testData/quickfix/createFromUsage/createFunction/binaryOperations/quotedName.kt.after @@ -1,8 +1,8 @@ -// "Create extension function '\u00A0'" "true" +// "Create extension function '!u00A0'" "true" fun test() { - val t: Int = 1 `\u00A0` 2 + val t: Int = 1 `!u00A0` 2 } -fun Int.`\u00A0`(i: Int): Int { +fun Int.`!u00A0`(i: Int): Int { throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates. } diff --git a/idea/testData/quickfix/createFromUsage/createVariable/parameter/quotedName.kt b/idea/testData/quickfix/createFromUsage/createVariable/parameter/quotedName.kt index 696c1e8bfe5..872f537a59c 100644 --- a/idea/testData/quickfix/createFromUsage/createVariable/parameter/quotedName.kt +++ b/idea/testData/quickfix/createFromUsage/createVariable/parameter/quotedName.kt @@ -1,4 +1,4 @@ -// "Create parameter '\u00A0'" "true" +// "Create parameter '!u00A0'" "true" fun test() { - val t: Int = `\u00A0` + val t: Int = `!u00A0` } \ No newline at end of file diff --git a/idea/testData/quickfix/createFromUsage/createVariable/parameter/quotedName.kt.after b/idea/testData/quickfix/createFromUsage/createVariable/parameter/quotedName.kt.after index a172daf54e0..d402199e5f2 100644 --- a/idea/testData/quickfix/createFromUsage/createVariable/parameter/quotedName.kt.after +++ b/idea/testData/quickfix/createFromUsage/createVariable/parameter/quotedName.kt.after @@ -1,4 +1,4 @@ -// "Create parameter '\u00A0'" "true" -fun test(`\u00A0`: Int) { - val t: Int = `\u00A0` +// "Create parameter '!u00A0'" "true" +fun test(`!u00A0`: Int) { + val t: Int = `!u00A0` } \ No newline at end of file diff --git a/idea/testData/quickfix/createFromUsage/createVariable/property/quotedName.kt b/idea/testData/quickfix/createFromUsage/createVariable/property/quotedName.kt index 049c1dba38b..97e0aaa0496 100644 --- a/idea/testData/quickfix/createFromUsage/createVariable/property/quotedName.kt +++ b/idea/testData/quickfix/createFromUsage/createVariable/property/quotedName.kt @@ -1,5 +1,5 @@ -// "Create property '\u00A0'" "true" +// "Create property '!u00A0'" "true" // ERROR: Property must be initialized fun test() { - val t: Int = `\u00A0` + val t: Int = `!u00A0` } \ No newline at end of file diff --git a/idea/testData/quickfix/createFromUsage/createVariable/property/quotedName.kt.after b/idea/testData/quickfix/createFromUsage/createVariable/property/quotedName.kt.after index ad38143a27f..905369c5fe6 100644 --- a/idea/testData/quickfix/createFromUsage/createVariable/property/quotedName.kt.after +++ b/idea/testData/quickfix/createFromUsage/createVariable/property/quotedName.kt.after @@ -1,7 +1,7 @@ -val `\u00A0`: Int +val `!u00A0`: Int -// "Create property '\u00A0'" "true" +// "Create property '!u00A0'" "true" // ERROR: Property must be initialized fun test() { - val t: Int = `\u00A0` + val t: Int = `!u00A0` } \ No newline at end of file