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

import test.Test;

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