summaryrefslogtreecommitdiff
path: root/src/test/java/maurizio/TestUser.oj
blob: 9ad64af0c818cfe3885a99a8650248b6e45e6bc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
import maurizio;

public class TestUser {
    public static void main(String[] args) {
        Test t = new Test();
        Object o = t;
        Test t2 = (Test) o;
        System.out.println(Test.class);
        System.out.println(t);
    }
}