summaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/itds/binaryweaving/BaseClass.java
blob: 225dddd468b184d52a53f548cd67c3e70870a597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class BaseClass<N> {
  static int count = 0;

  public static void main(String[]argv) {
    BaseClass b = new BaseClass();
    b.run1();
    b.run2();
    b.run3();
    System.err.println("Advice count="+count);
  }

  public void run1() {}
  public void run2() {}
  public void run3() {}
}