mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
12 lines
225 B
Java
12 lines
225 B
Java
interface ToStringBug {
|
|
|
|
static void toString(String s) {}
|
|
|
|
class Inner implements ToStringBug {
|
|
|
|
{
|
|
toString<error descr="Expected no arguments but found 1">( "x")</error>;
|
|
}
|
|
}
|
|
}
|