aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs187/307147/ITDAspect.aj
blob: 5442a58258491b77f082c975475bad22c9d77a25 (plain)
1
2
3
4
5
6
7
8
9
10
11
package test;

import test.Test;

public privileged aspect ITDAspect {
	public void Test.itdFunction() {
		System.out.println("ITD function");
		privateMethod();
		publicMethod();
	}
}