//: initialization/MethodInit.java // ©2015 MindView LLC: see Copyright.txt public class MethodInit { int i = f(); int f() { return 11; } } ///:~