Files
kotlin/compiler/testData/asJava/lightClasses/nullabilityAnnotations/Primitives.java
Alexander Udalov f310d4c10e Don't write Kotlin metadata in light classes mode
This was already happening for classes and packages, now will also for
interface DefaultImpls and any other possible classes
2015-10-03 01:03:35 +03:00

46 lines
950 B
Java
Vendored

public interface Primitives {
int $$int /* Real name is 'int' */(int x);
@org.jetbrains.annotations.Nullable
java.lang.Boolean getNullableBool();
@org.jetbrains.annotations.Nullable
java.lang.Byte getNullableByte();
@org.jetbrains.annotations.Nullable
java.lang.Short getNullableShort();
@org.jetbrains.annotations.Nullable
java.lang.Character getNullableChar();
@org.jetbrains.annotations.Nullable
java.lang.Integer getNullableInt();
@org.jetbrains.annotations.Nullable
java.lang.Long getNullableLong();
@org.jetbrains.annotations.Nullable
java.lang.Float getNullableFloat();
@org.jetbrains.annotations.Nullable
java.lang.Double getNullableDouble();
boolean getBool();
byte getByte();
short getShort();
char getChar();
int getInt();
long getLong();
float getFloat();
double getDouble();
static final class DefaultImpls {
}
}