J'ai le code suivant: class Hello { class Thing { public int size; Thing() { size = 0; } } public static void main(String[] args) { Thing thing1 = new Thing(); System.out.println("Hello, World!"); } } Je sais que Thingcela ne fait rien, mais mon programme Hello, World se compile très bien sans...