mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
12 lines
310 B
Java
Vendored
12 lines
310 B
Java
Vendored
package test;
|
|
|
|
import kotlin.jvm.internal.*;
|
|
|
|
public interface IntrinsicCompanionObject {
|
|
void testInt(IntCompanionObject i);
|
|
void testChar(CharCompanionObject c);
|
|
void testString(StringCompanionObject s);
|
|
void testBoolean(BooleanCompanionObject b);
|
|
void testEnum(EnumCompanionObject e);
|
|
}
|