aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs171/pr384398_2/BAspect.aj
blob: fcba89b39c72da422799af70c1f5e49769b2bfa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package de.example;

import de.example.A.InnerA;

public aspect BAspect {

	InnerA B.someMethod(){
		A<String> as = new A<String>();
		return as.new InnerA();
	}

	InnerA B.someOtherMethod(){
		return someMethod();
	}

}