Escape special names with backticks in test data
#KT-51248
This commit is contained in:
committed by
Space
parent
4de9de5fc5
commit
918a91dbdf
@@ -3,11 +3,11 @@ package test
|
||||
public open class BaseClass {
|
||||
/*primary*/ public constructor BaseClass()
|
||||
public open val shape: kotlin.String
|
||||
public open fun <get-shape>(): kotlin.String
|
||||
public open fun `<get-shape>`(): kotlin.String
|
||||
}
|
||||
|
||||
public open class Subclass : test.BaseClass {
|
||||
/*primary*/ public constructor Subclass()
|
||||
public open override /*1*/ val shape: kotlin.String
|
||||
public open override /*1*/ fun <get-shape>(): kotlin.String
|
||||
public open override /*1*/ fun `<get-shape>`(): kotlin.String
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user