blob: 72e7e76699296f08058253bf16c3d3dc25ea3e4e [file] [log] [blame]
package com.siyeh.igtest.performance;
public class InstantiatingObjectToGetClassObjectInspection {
public void foo()
{
new Integer(3).getClass();
}
}