aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr268710/GenericAspect.aj
blob: b4df9fd6ebe30ca82087fbf4cb3318a73ac7e52e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * 
 */
package none;

/**
 * @author Dawid Pytel
 * 
 */
public abstract aspect GenericAspect<T> {

	interface SomeInterface {
	}

	pointcut SomeConstructor(SomeInterface var) : execution(SomeInterface+.new(..)) && this(var);
}