mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-24 04:07:09 +07:00
17 lines
238 B
Java
17 lines
238 B
Java
import java.lang.AutoCloseable
|
|
|
|
public class Foo {
|
|
void m() {
|
|
getStream().twr<caret>
|
|
}
|
|
|
|
AutoCloseable getStream()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
private class Exception extends java.lang.Exception
|
|
{
|
|
|
|
}
|
|
} |