summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/PR106461.aj
blob: 5edc140647bb73c52629238068aea4cbfe0e346b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public aspect PR106461 {
	
	pointcut missingNamePattern() : call(* Foo+(..));
	
	pointcut missingNamePatternInField() : get(* Foo+);
	
	pointcut missingNamePatternInConstructor() : call(Foo+(..));
	
	pointcut butThisIsAllowedOfCourse() : call(* *(..));
	
	pointcut asIsThis() : call(* foo(..));
}

class Foo {
	
	void foo() {}
	
}