aboutsummaryrefslogtreecommitdiffstats
path: root/tests/base/test115/Driver.java
blob: a15967fc0fa03f7fcb03ddf8d0cecb82e46b9f03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import org.aspectj.testing.Tester;

public class Driver {
  public static void main(String[] args) { test(); }
  
  static public void test() {
    SubClass s = new SubClass(0);
    Tester.checkEqual(Aspect.count, 2, "introduced constructors");
  }
}

class Class {}

class SubClass extends Class {}

// this should introduce a unary constructor for 
// Class and SubClass

aspect Aspect {
  static int count = 0;
  //introduction subtypes(Class) {
  Class.new(int i) {count++;}
  SubClass.new(int i) {super(2); count++;}
      //}
}