summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr145963/ClassForAspectPath.java
blob: 0494c9c84ceac219494bd1e541e883041321435d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public class ClassForAspectPath {

	public static void main(String[] args) {
		new ClassForAspectPath().method();

	}

	public void method() {
		System.out.println("blah");
	}
	
}