summaryrefslogtreecommitdiff
path: root/test/files/run/t6168b/SomeClass.java
blob: 566c55e1c50b5db795bd3c34e449d6f53504f1cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
public class SomeClass {
    private final Context<SomeClass> context = new Context<SomeClass>();
    {
        context.setParent(this);
    }

    public final Context.Field<Integer> f = context.intField();

}