blob: 46814725bfb6fa7e5769b4e7cdf23bbccc5930f7 [file] [log] [blame]
package com.siyeh.igtest.cloneable;
public class CloneCallsConstructorInspection implements Cloneable
{
public void foo()
{
}
public Object clone()
{
return new CloneCallsConstructorInspection();
}
}