blob: 58581dfe2e3afb50b9aad241ed05ba44c24302bc [file] [log] [blame]
package com.siyeh.igtest.performance.object_allocation_in_loop;
class ObjectAllocationInLoop {
void m() {
while (true) {
new <warning descr="Object allocation 'new Object()' in loop">Object</warning>();
}
}
}