[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
This commit is contained in:
+25
@@ -0,0 +1,25 @@
|
||||
// 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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user