blob: f8d33d92c8156ad4f471d57b4ec1b2fb67287373 [file] [log] [blame]
import java.lang.AutoCloseable
public class Foo {
void m() {
try (AutoCloseable stream = getStream()) {
<caret>
} catch (Exception e) {
}
}
AutoCloseable getStream()
{
return null;
}
}