aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr113947/case1/AbstractListSupport.java
blob: 941ac06c131e067d73d991d3c02ab799eb49e8a3 (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;
	}

}