package misc; import evan.Vector; import java.util.*; /** * An attempt to distinguish between Vectors. */ public class VectorTest { public static void main(String[] args) throws Exception { Vector v = new Vector(); java.util.Vector w = new java.util.Vector(); } // main(String[]) } // class VectorTest