import testData.libraries.*; class TestClassAndConstructors { void foo() { SomeClassWithConstructors inst = new SomeClassWithConstructors("arg"); SomeClassWithConstructors inst2 = new SomeClassWithConstructors(2); } }