aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/prInner/base/src/a/b/c/Runner.java
blob: f9bd75421127f31ec6ac08439439d5b19b4f19e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
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]);
  }
}