aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr108054/pr108054.aj
blob: 4d136beff350bca9c497177051741fcfe23493b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
interface ISequence<V> {
	
}

interface ICounter<T>  {

}

abstract class ASequence <V, T extends ICounter<V> > 
          implements ISequence<V> {

}