1 package test1; 2 3 public class Subtype extends SubtypeA implements SubtypeC { 4 int i; 5 } 6 7 class SubtypeA { 8 int a; 9 } 10 11 interface SubtypeB { 12 final int b = 3; 13 } 14 15 interface SubtypeC extends SubtypeB { 16 final int c = 4; 17 } 18