aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr113947/case1/AbstractListSupport.java
blob: facc7e37cf5fd3e4d28711aa68f73584cc4343e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public abstract aspect AbstractListSupport<I,M extends I> {

	declare parents : @LinkedListItem * implements M;

	private M M.next;

	public I M.getNext () {
		return next;
	}

	public void M.setNext (M item) {
		next = item;
	}

}