blob: 7761214e6f8f5ba8707113b239c9c61cef656ff0 [file] [log] [blame]
//file
import java.io.*;
public class C {
void foo() throws IOException {
try(InputStream stream = new ByteArrayInputStream(new byte[10])) {
// reading something
int c = stream.read();
System.out.println(c);
}
}
}