mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-30 10:44:06 +07:00
10 lines
204 B
Java
10 lines
204 B
Java
// multiple single-type import of the same class
|
|
|
|
import java.io.IOException;
|
|
<warning descr="Unused import statement">import java.io.IOException;</warning>
|
|
|
|
|
|
public class c {
|
|
public IOException m;
|
|
}
|