Files
kotlin-fork/nj2k/testData/newJ2k/implicitCasts/arithmeticInFunctionCall.java
T
2020-08-18 17:38:07 +03:00

11 lines
229 B
Java
Vendored

class A {
void acceptDouble(double d) {}
void acceptDoubleBoxed(Double d) {}
public void conversion() {
int a = 10;
float b = 0.7f;
acceptDouble(a * b)
acceptDoubleBoxed(a * b)
}
}