blob: 35d29d3cd149164dcd88cf8674694678fb7d2165 [file] [log] [blame]
int missing() {
InputStream i = null
try {
return 1;
}
catch(Exception e) {
}
<warning descr="Not all execution paths return a value">}</warning>
int ok() {
InputStream i = null
try {
return 1;
}
finally {
try {
i.close()
}
catch (Exception ignored) {
}
}
}