mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
11 lines
119 B
Java
11 lines
119 B
Java
// "Make 'i' not abstract" "false"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f() {
|
|
new <caret>i();
|
|
}
|
|
}
|
|
interface i {
|
|
}
|