Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

10 lines
215 B
Java

//: reuse/Lisa.java
// ©2015 MindView LLC: see Copyright.txt
// {CompileTimeError} (Won't compile)
class Lisa extends Homer {
@Override void doh(Milhouse m) {
System.out.println("doh(Milhouse)");
}
} ///:~