Escape special names with backticks in test data
#KT-51248
This commit is contained in:
committed by
Space
parent
4de9de5fc5
commit
918a91dbdf
+3
-3
@@ -1,12 +1,12 @@
|
||||
package test
|
||||
|
||||
@field:test.A(s = "2") public var v: kotlin.Int
|
||||
@test.A(s = "3") @kotlin.jvm.JvmName(name = "vget") public fun <get-v>(): kotlin.Int
|
||||
@test.A(s = "4") @kotlin.jvm.JvmName(name = "vset") public fun <set-v>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
@test.A(s = "3") @kotlin.jvm.JvmName(name = "vget") public fun `<get-v>`(): kotlin.Int
|
||||
@test.A(s = "4") @kotlin.jvm.JvmName(name = "vset") public fun `<set-v>`(/*0*/ `<set-?>`: kotlin.Int): kotlin.Unit
|
||||
@test.A(s = "1") @kotlin.jvm.JvmName(name = "bar") public fun foo(): kotlin.String
|
||||
|
||||
public final annotation class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A(/*0*/ s: kotlin.String)
|
||||
public final val s: kotlin.String
|
||||
public final fun <get-s>(): kotlin.String
|
||||
public final fun `<get-s>`(): kotlin.String
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user