f31faafd72
Java type enhancement is performed by a special scope kind Java FIR dump was added for multiplatform tests to look at enhancements Overrides, J2K mapping, special cases does not work yet Related to KT-29937
14 lines
297 B
Java
Vendored
14 lines
297 B
Java
Vendored
public class Some {
|
|
public boolean foo(int param) {
|
|
return param > 0;
|
|
}
|
|
|
|
public String[] bar(int[] arr) {
|
|
String[] result = new String[arr.length];
|
|
int i = 0;
|
|
for (int elem: arr) {
|
|
result[i++] = elem;
|
|
}
|
|
return result;
|
|
}
|
|
} |