blob: a9de7fa2d487f6086568b1dd0b434184562625d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public aspect EMA {
before() : cflow(execution(* *(..))) {}
}
aspect Goo {
declare parents: EMA extends C;
public void EMA.m() {}
}
abstract class C {
abstract void m();
}
|