KT-7922 Added Boolean Companion Object
This commit is contained in:
@@ -6,5 +6,6 @@ public interface IntrinsicCompanionObject {
|
||||
void testInt(IntCompanionObject i);
|
||||
void testChar(CharCompanionObject c);
|
||||
void testString(StringCompanionObject s);
|
||||
void testBoolean(BooleanCompanionObject b);
|
||||
void testEnum(EnumCompanionObject e);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user