Files
kotlin-fork/compiler/testData/diagnostics/tests/javac/fieldsResolution/BinaryInitializers.kt
T
Dmitriy Novozhilov 61302a2e08 [TEST] Migrate duplicating javac tests to new test runners
Also minimize scope of DiagnosticUsingJavac tests to
 `compiler/testData/diagnostics/tests/javac`. This is fine since
 javac compilation mode is still not finished and no one not going to
 support it
2020-12-16 19:52:25 +03:00

25 lines
411 B
Kotlin
Vendored

// FIR_IDENTICAL
// FILE: a/x.java
package a;
public interface x {
double D = Double.MAX_VALUE;
double D2 = D - 32.12111;
float F = Float.MAX_VALUE;
float F2 = F - 1231.965f;
int I = Integer.MAX_VALUE;
int I2 = I - 42;
byte B = Byte.MAX_VALUE;
byte B2 = B - 3;
long L = Long.MAX_VALUE;
long L2 = L - 5545342;
short S = Short.MAX_VALUE;
short S2 = S - 5;
}