10 lines
264 B
Java
10 lines
264 B
Java
//: generics/MultipleInterfaceVariants.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
// {CompileTimeError} (Won't compile)
|
|
|
|
interface Payable<T> {}
|
|
|
|
class Employee implements Payable<Employee> {}
|
|
class Hourly extends Employee
|
|
implements Payable<Hourly> {} ///:~
|