summaryrefslogtreecommitdiffstats
path: root/tests/bugs/BadBindingError.java
blob: 0f1e111e43f945e3aef5ff7f5e4c8d02437a53e3 (plain)
1
2
3
4
5
6
7
8
// Bugzilla Bug 30663  
//lame error message: "negation doesn't allow binding" 

import org.aspectj.testing.Tester;

public aspect BadBindingError {
  pointcut p(int i): call(void f(i));
}