01: package test; 02: 03: import java.util.HashSet; 04: 05: public class ConstructorsAreMethods3 { 06: 07: public ConstructorsAreMethods3() { 08: new HashSet<String>(); 09: } 10: 11: }