Escape special names with backticks in test data
#KT-51248
This commit is contained in:
committed by
Space
parent
4de9de5fc5
commit
918a91dbdf
@@ -3,19 +3,19 @@ package test
|
||||
public final class ConstructorTypeParamClassObjectConflict</*0*/ test> {
|
||||
/*primary*/ public constructor ConstructorTypeParamClassObjectConflict</*0*/ test>()
|
||||
public final val some: kotlin.Int
|
||||
public final fun <get-some>(): kotlin.Int
|
||||
public final fun `<get-some>`(): kotlin.Int
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
public final val test: kotlin.Int
|
||||
public final fun <get-test>(): kotlin.Int
|
||||
public final fun `<get-test>`(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
public final class ConstructorTypeParamClassObjectTypeConflict</*0*/ test> {
|
||||
/*primary*/ public constructor ConstructorTypeParamClassObjectTypeConflict</*0*/ test>()
|
||||
public final val some: test?
|
||||
public final fun <get-some>(): test?
|
||||
public final fun `<get-some>`(): test?
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
@@ -28,39 +28,39 @@ public final class ConstructorTypeParamClassObjectTypeConflict</*0*/ test> {
|
||||
public final class TestClassObjectAndClassConflict {
|
||||
/*primary*/ public constructor TestClassObjectAndClassConflict()
|
||||
public final val bla: kotlin.String
|
||||
public final fun <get-bla>(): kotlin.String
|
||||
public final fun `<get-bla>`(): kotlin.String
|
||||
public final val some: kotlin.String
|
||||
public final fun <get-some>(): kotlin.String
|
||||
public final fun `<get-some>`(): kotlin.String
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
public final val bla: kotlin.Int
|
||||
public final fun <get-bla>(): kotlin.Int
|
||||
public final fun `<get-bla>`(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
public final class TestConstructorParamClassObjectConflict {
|
||||
/*primary*/ public constructor TestConstructorParamClassObjectConflict(/*0*/ test: kotlin.String)
|
||||
public final val some: kotlin.String
|
||||
public final fun <get-some>(): kotlin.String
|
||||
public final fun `<get-some>`(): kotlin.String
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
public final val test: kotlin.Int
|
||||
public final fun <get-test>(): kotlin.Int
|
||||
public final fun `<get-test>`(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
public final class TestConstructorValClassObjectConflict {
|
||||
/*primary*/ public constructor TestConstructorValClassObjectConflict(/*0*/ test: kotlin.String)
|
||||
public final val some: kotlin.String
|
||||
public final fun <get-some>(): kotlin.String
|
||||
public final fun `<get-some>`(): kotlin.String
|
||||
public final val test: kotlin.String
|
||||
public final fun <get-test>(): kotlin.String
|
||||
public final fun `<get-test>`(): kotlin.String
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
public final val test: kotlin.Int
|
||||
public final fun <get-test>(): kotlin.Int
|
||||
public final fun `<get-test>`(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user