FileDocCategorySizeDatePackage
SomethingIsWrong.javaAPI DocExample295Tue Dec 12 18:58:04 GMT 2000None

SomethingIsWrong.java

//
// This program won't compile because something is wrong.
//
public class SomethingIsWrong {
    public static void main(String[] args) {
        Rectangle myRect;
        myRect.width = 40;
        myRect.height = 50;
        System.out.println("myRect's area is " + myRect.area());
    }
}