mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 15:51:54 +00:00
10 lines
468 B
Plaintext
Vendored
10 lines
468 B
Plaintext
Vendored
package test
|
|
|
|
public interface IntrinsicCompanionObject {
|
|
public abstract fun testBoolean(/*0*/ p0: kotlin.Boolean.Companion!): kotlin.Unit
|
|
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
|
|
}
|