mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
12 lines
207 B
Java
12 lines
207 B
Java
// "Unimplement" "true-preview"
|
|
class A implements II<S<caret>tring> {
|
|
public String toString() {
|
|
return super.toString();
|
|
}
|
|
|
|
public void foo(String ty){}
|
|
}
|
|
|
|
interface II<T> {
|
|
void foo(T ty);
|
|
} |