2015-09-07 11:44:36 -06:00

10 lines
208 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)");
}
}