import org.aspectj.testing.*; public class IntLiteral { public static void main(String[] args) { new IntLiteral().go(); org.aspectj.testing.Tester.check(goRan, "Method go did not run"); } static boolean goRan = false; void go() { goRan = true; } } aspect A { pointcut p1(int i) : execution(* *(5)); } >
summaryrefslogtreecommitdiffstats
path: root/.github/ISSUE_TEMPLATE.md
blob: d0c93aa8d89dde0856aade7cd170558a817bf92e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13