summaryrefslogtreecommitdiffstats
path: root/tests/decp/B.java
blob: 6a96c2e000c1a22cee97ee957e0d30c569e4e4fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public class B extends A {
	
	public static void main(String[] args) {
		B b = new B();
		if (b.getClass().getInterfaces().length>0) {
			throw new RuntimeException("B should not implement any interfaces: "+b.getClass().getInterfaces()[0].toString());
		}
		if (!(b instanceof java.io.Serializable)) {
			throw new RuntimeException("B should be serializable! Inherited from A");
		}
	}
}