Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
j2k
/
testData
/
fileOrElement
/
tryWithResource
/
Simple.java
blob: f1d813522eb3a9cbb1bc05f7d56dc2de93c4e9ff [
file
] [
log
] [
blame
]
//file
import
java
.
io
.*;
public
class
C
{
void
foo
()
throws
IOException
{
try
(
InputStream
stream
=
new
ByteArrayInputStream
(
new
byte
[
10
]))
{
System
.
out
.
println
(
stream
.
read
());
}
}
}