fork download
  1.  
  2. class Ideone
  3. {
  4. public static void main (String[] args) {
  5. class Test {
  6.  
  7. public Test(){
  8. System.out.println("Test complete");
  9. }
  10.  
  11. }
  12.  
  13. new Test();
  14. }
  15. }
Success #stdin #stdout 0.07s 380224KB
stdin
Standard input is empty
stdout
Test complete