home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / test / exceptions / StackDump.java < prev    next >
Text File  |  1996-09-28  |  277b  |  17 lines

  1. public class StackDump {
  2.     StackDump()
  3.     { }
  4.     public void f(int i)
  5.     {
  6.         StackDump s;
  7.         s = (i == 0) ? null : this;
  8.         s.f(i - 1);
  9.     }
  10.     public static void main(String[] args)
  11.     {
  12.         StackDump s = new StackDump();
  13.  
  14.         s.f(10);
  15.     }
  16. }
  17.