public class Caveat3 { public static void main(String[] args) { long a; int b, c; a = 2; b = 3; c = a + b; // Error... } }