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

11 lines
219 B
Java
Vendored

//file
import java.io.*;
public class C {
void foo() throws IOException {
try(InputStream stream = new ByteArrayInputStream(new byte[10])) {
System.out.println(stream.read());
}
}
}