// Class nested_with_ctor// Generated on Mon Jan 31 18:31:47 PST 2000// The nested class contains explicit constructors. Their argument// lists should be augmented with the alias initializer values when// the ctors are seen declared (as opposed to generated.)classnested_with_ctor{voidfct(finalStrings,finalinti){classnested{Stringbuffer=s+i;StringgetString(){returnbuffer;}nested(inti){buffer="(int)"+i;}nested(){}}nestedx=newnested();System.out.println(x.getString());nestedy=newnested(123);System.out.println(y.getString());}publicstaticvoidmain(String[]arg){System.out.println("Testing class `nested_with_ctor'...");newnested_with_ctor().fct("Yikes!",321);}}