Escape special names with backticks in test data

#KT-51248
This commit is contained in:
Vladimir Dolzhenko
2022-02-01 22:29:34 +01:00
committed by Space
parent 4de9de5fc5
commit 918a91dbdf
279 changed files with 1689 additions and 1689 deletions
+3 -3
View File
@@ -1,12 +1,12 @@
package test
private const val topLevel: kotlin.Int = 1
private fun <get-topLevel>(): kotlin.Int
private fun `<get-topLevel>`(): kotlin.Int
public object A {
/*primary*/ private constructor A()
internal const final val inObject: kotlin.Int = 2
internal final fun <get-inObject>(): kotlin.Int
internal final fun `<get-inObject>`(): kotlin.Int
}
public final class B {
@@ -15,6 +15,6 @@ public final class B {
public companion object Companion {
/*primary*/ private constructor Companion()
public const final val inCompanion: kotlin.Int = 3
public final fun <get-inCompanion>(): kotlin.Int
public final fun `<get-inCompanion>`(): kotlin.Int
}
}