blob: 1573ec53efbc34a97f4846539364879bb3b9dc20 [file] [log] [blame]
package com.siyeh.igtest.classlayout;
public abstract class NonProtectedConstructorInAbstractClassInspection2 {
protected NonProtectedConstructorInAbstractClassInspection2() {
this(2);
}
private NonProtectedConstructorInAbstractClassInspection2(int foo) {
super();
}
}