//: generics/HijackedInterface.java // ©2015 MindView LLC: see Copyright.txt // {CompileTimeError} (Won't compile) class Cat extends ComparablePet implements Comparable{ // Error: Comparable cannot be inherited with // different arguments: and public int compareTo(Cat arg) { return 0; } } ///:~