mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
7 lines
457 B
Java
7 lines
457 B
Java
interface MyCloneable {
|
|
|
|
//protected method from java.lang.Object is not implicitly declared in interface with no base interfaces
|
|
<error descr="'clone()' in 'MyCloneable' clashes with 'clone()' in 'java.lang.Object'; attempting to use incompatible return type">int</error> clone();
|
|
|
|
<error descr="'toString()' in 'MyCloneable' clashes with 'toString()' in 'java.lang.Object'; attempting to use incompatible return type">int</error> toString();
|
|
} |