public class InitTest { Integer myValue; ...
# tornadofx
c
public class InitTest { Integer myValue; Integer thisWontCompile = 42 + myValue; public static void main(String[] args) { System.out.println("thisWont=" + new InitTest().thisWontCompile); } }