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