mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
11 lines
147 B
Java
11 lines
147 B
Java
// "Unimplement Interface" "true"
|
|
class A {
|
|
public String toString() {
|
|
return super.toString();
|
|
}
|
|
|
|
}
|
|
|
|
interface II<T> {
|
|
void foo(T ty);
|
|
} |