//: generics/MultipleInterfaceVariants.java // ©2015 MindView LLC: see Copyright.txt // {CompileTimeError} (Won't compile) interface Payable {} class Employee implements Payable {} class Hourly extends Employee implements Payable {} ///:~