summaryrefslogtreecommitdiff
path: root/Java-Kompendium/kap22/2/Main.java
blob: 10245960e231a521d0ecb6d86f3edc3e385c8389 (plain)
1
2
3
4
5
6
7
8
9
public class Main {
    public static void main(String[] arguments) {
        var i = new GenericClass<Integer>(2);
        var l = new GenericClass<Long>(1l);

        System.out.println(i.value);
        System.out.println(l.value);
    }
}