Files
kotlin-fork/nj2k/testData/newJ2k/foreachStatement/foreachWithoutBody.java
T
2019-04-03 11:24:19 +03:00

8 lines
151 B
Java
Vendored

public class A {
public void aVoid() {
int[] array = new int[10];
for (int i : array);
System.out.println("Done");
}
}