Escape special names with backticks in test data
#KT-51248
This commit is contained in:
committed by
Space
parent
4de9de5fc5
commit
918a91dbdf
+15
-15
@@ -1,32 +1,32 @@
|
||||
package test
|
||||
|
||||
public const val MAX_HIGH_SURROGATE: kotlin.Char = \uDBFF ('?')
|
||||
public fun <get-MAX_HIGH_SURROGATE>(): kotlin.Char
|
||||
public fun `<get-MAX_HIGH_SURROGATE>`(): kotlin.Char
|
||||
public const val b: kotlin.Byte = 100.toByte()
|
||||
public fun <get-b>(): kotlin.Byte
|
||||
public fun `<get-b>`(): kotlin.Byte
|
||||
public const val b1: kotlin.Byte = 1.toByte()
|
||||
public fun <get-b1>(): kotlin.Byte
|
||||
public fun `<get-b1>`(): kotlin.Byte
|
||||
public const val bb: kotlin.Boolean = true
|
||||
public fun <get-bb>(): kotlin.Boolean
|
||||
public fun `<get-bb>`(): kotlin.Boolean
|
||||
public const val c: kotlin.Char = \u03C0 ('π')
|
||||
public fun <get-c>(): kotlin.Char
|
||||
public fun `<get-c>`(): kotlin.Char
|
||||
public const val d: kotlin.Double = 3.14.toDouble()
|
||||
public fun <get-d>(): kotlin.Double
|
||||
public fun `<get-d>`(): kotlin.Double
|
||||
public const val f: kotlin.Float = 3.14.toFloat()
|
||||
public fun <get-f>(): kotlin.Float
|
||||
public fun `<get-f>`(): kotlin.Float
|
||||
public const val i: kotlin.Int = 2000000
|
||||
public fun <get-i>(): kotlin.Int
|
||||
public fun `<get-i>`(): kotlin.Int
|
||||
public const val i1: kotlin.Short = 1.toShort()
|
||||
public fun <get-i1>(): kotlin.Short
|
||||
public fun `<get-i1>`(): kotlin.Short
|
||||
public const val l: kotlin.Long = 2000000000000.toLong()
|
||||
public fun <get-l>(): kotlin.Long
|
||||
public fun `<get-l>`(): kotlin.Long
|
||||
public const val l1: kotlin.Long = 1.toLong()
|
||||
public fun <get-l1>(): kotlin.Long
|
||||
public fun `<get-l1>`(): kotlin.Long
|
||||
public const val nl: kotlin.Char = \u000A ('\n')
|
||||
public fun <get-nl>(): kotlin.Char
|
||||
public fun `<get-nl>`(): kotlin.Char
|
||||
public const val s: kotlin.Short = 20000.toShort()
|
||||
public fun <get-s>(): kotlin.Short
|
||||
public fun `<get-s>`(): kotlin.Short
|
||||
public const val s1: kotlin.Short = 1.toShort()
|
||||
public fun <get-s1>(): kotlin.Short
|
||||
public fun `<get-s1>`(): kotlin.Short
|
||||
public const val str: kotlin.String = ":)"
|
||||
public fun <get-str>(): kotlin.String
|
||||
public fun `<get-str>`(): kotlin.String
|
||||
|
||||
Reference in New Issue
Block a user