FileDocCategorySizeDatePackage
SmallIntMult.javaAPI DocExample227Tue Apr 18 14:50:32 BST 2000None

SmallIntMult.java

public class SmallIntMult {
    public static void main(String[] argv) {
        byte b = 1;
        short s = 1;
        // You may be surprised by the next line.
        short result = b * s;		// EXPECT COMPILE ERROR
    }
}