Escape special names with backticks in test data
#KT-51248
This commit is contained in:
committed by
Space
parent
4de9de5fc5
commit
918a91dbdf
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user