blob: 8141d73a833f3cbfb10cd9a7678611522ba756bb [file] [log] [blame]
package com.siyeh.igtest.classlayout;
public abstract class NonProtectedConstructorInAbstractClassInspection
{
public NonProtectedConstructorInAbstractClassInspection()
{
}
private NonProtectedConstructorInAbstractClassInspection(int foo)
{
}
}