aboutsummaryrefslogtreecommitdiffstats
path: root/tests/base/test115/Driver.java
blob: 16fb5b13e8d1612177392b09830fbe0cb0455610 (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) {this(); count++;}
  SubClass.new(int i) {super(2); count++;}
      //}
}