// housekeeping/MethodInit3.java // ©2016 MindView LLC: see Copyright.txt public class MethodInit3 { //! int j = g(i); // Illegal forward reference int i = f(); int f() { return 11; } int g(int n) { return n * 10; } }