Suppose we have the following code:
class Test { private Test() { System.out.println(\"test\"); } } public class One extends Test { On
Make the constructor of test non-private or move One into test.
test
private
One
BTW, your sample code contains a few issues:
Test