aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features169/itdInnerTypes/six/Runner.java
blob: 14dcfcae7b4e71ac2470f8beb9f9e9a4c2481c91 (plain)
1
2
3
4
5
6
7
8
9
10
package a.b.c;

@RelatedType(value=Vote.__.choice.class)
public class Runner {
  public static void main(String[]argv) {
    Vote.__ v = new Vote.__("wibble");
    System.out.println(v.getString());
    System.out.println(Runner.class.getDeclaredAnnotations()[0]);
  }
}