mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 18:20:52 +07:00
13 lines
263 B
Java
13 lines
263 B
Java
import java.io.IOException;
|
|
|
|
class MyTest<T> {
|
|
public MyTest() throws IOException {}
|
|
|
|
void m() {
|
|
MyTest<String> test = new <error descr="Unhandled exception: java.io.IOException">MyTest<></error>();
|
|
}
|
|
|
|
{
|
|
MyTest<String> test = new MyTest<>();
|
|
}
|
|
} |