blob: a6afe88de38816710eb5a863ef2a8ae9961d67c1 [file] [log] [blame]
public class Foo {
void m() {
try (AutoCloseable stream = getStream()) {
} catch (Exception e) {
}
}
AutoCloseable getStream()
{
return null;
}
}