blob: 84696ac60cbe061b8e4778d5a4586022c026d83e [file] [log] [blame]
package com.siyeh.igtest.cloneable.clone_calls_constructors;
class CloneCallsConstructors implements Cloneable {
@Override
protected Object clone() throws CloneNotSupportedException {
return new <warning descr="'clone()' creates new 'CloneCallsConstructors' instances">CloneCallsConstructors</warning>();
}
}