aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr255555/base/src/test/MyAspect.aj
blob: 970be41e52af4e8251db96822c032eb744ebe787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package test;
import java.util.List;

public privileged aspect MyAspect {
	void Demo.foo(java.util.List<String> x) { }
        declare @method: (void Demo.foo(..): @Deprecated;
	declare @type: Demo: @Deprecated;
	
        //declare @field: (int Demo.x): @Deprecated;
        //declare @constructor: (public Demo.new(int)): @Deprecated;

}