aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/pr354683/main/AbstractBaseClass.java
blob: d885d5fc2754976c7b7e3863017219bbfb33c77a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package main;

import util.DerivedCommonDataInterfaceImpl;


/**
* NOTE: for iajc failure to occur this class has to be 
* 1st - parametrized
* 2nd - abstract
* whether or not its subclasses specifie the type parameter does not matter
*/
public abstract class AbstractBaseClass <T extends Whatever> implements DerivedCommonDataInterfaceImpl {}