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

import de.example.A.InnerA;

public aspect BAspect {

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

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

}