/************************************************************************* * Compilation: javac Mystery.java * Execution: java Mystery * * An ill-posed class. * * % java Mystery * Exception in thread "main" java.lang.StackOverflowError * at Mystery.(Mystery.java:16) * at Mystery.(Mystery.java:18) * at Mystery.(Mystery.java:18) * at Mystery.(Mystery.java:18) * *************************************************************************/ public class Mystery { private Mystery x = new Mystery(); public static void main(String[] args) { Mystery mystery = new Mystery(); } }