2015-05-29 14:18:51 -07:00

10 lines
217 B
Java

//: reusing/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)");
}
} ///:~