aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/pr347395/Target.java
blob: ea0faad91e277ca97f2c468871c557a5a13d278d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package xxx.util;

@TaskModification
public class Target {

	@TaskModification
	public void m() {

	}

	public static void main(String[] args) {

		new Target().m();
	}

}