mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-05 08:31:31 +00:00
Get rid of multiple usages of IntrinsicObjects where JavaToKotlinClassMap was already used, simplify code, and support loading of *CompanionObject as Kotlin built-in companions from Java code. Also fix a small bug where Boolean was considered a class with an intrinsic companion in IntrinsicObjects, although it was not
9 lines
378 B
Plaintext
9 lines
378 B
Plaintext
package test
|
|
|
|
public trait IntrinsicCompanionObject {
|
|
public abstract fun testChar(/*0*/ p0: kotlin.Char.Companion!): kotlin.Unit
|
|
public abstract fun testEnum(/*0*/ p0: kotlin.Enum.Companion!): kotlin.Unit
|
|
public abstract fun testInt(/*0*/ p0: kotlin.Int.Companion!): kotlin.Unit
|
|
public abstract fun testString(/*0*/ p0: kotlin.String.Companion!): kotlin.Unit
|
|
}
|