9 lines
223 B
Java
9 lines
223 B
Java
|
//: generics/MultipleInterfaceVariants.java
|
||
|
// {CompileTimeError} (Won't compile)
|
||
|
|
||
|
interface Payable<T> {}
|
||
|
|
||
|
class Employee implements Payable<Employee> {}
|
||
|
class Hourly extends Employee
|
||
|
implements Payable<Hourly> {} ///:~
|