//GenericConstructorDemo.java
//Use a non-generic clss whose constructor is generic.

public class GenericConstructorDemo
{
    public static void main(String args[])
    {
        GenericConstructor test = new GenericConstructor(100);
        GenericConstructor test2 = new GenericConstructor(123.5F);
        test.showValue();
        test2.showValue();
    }
}
