mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
17 lines
314 B
Java
17 lines
314 B
Java
|
|
import static java.util.Objects.toString;
|
|
|
|
class Foo {
|
|
|
|
String go() {
|
|
return toString<error descr="Expected no arguments but found 1">("foo")</error>;
|
|
}
|
|
|
|
public String toString() {
|
|
return super.toString();
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println(new Foo().go());
|
|
}
|
|
} |