Better function header dump
[official-gcc.git] / libjava / testsuite / libjava.lang / inner4.java
blob983e668dc16bd2ec6688a0987bee4b254bc32bed
1 // Class inner4
2 // Generated on Tue Dec 7 11:43:48 PST 1999
3 //
5 class inner4 {
6 static private int xyz () { return 3; }
7 private String f;
9 String p () {
10 return "public String p()";
13 private String pp (int x, byte y, char c) {
14 return "private String pp("+x+", "+y+", "+c+")";
17 void foo () {
18 t xxx = this.new t();
19 xxx.bar ();
20 pp (3, (byte)34, 'C');
22 public static void main (String[] arg)
24 System.out.println ("Testing class `inner4'...");
25 new inner4().foo();
27 class t {
28 void bar () {
29 System.out.println (p ());
30 System.out.println (pp (3, (byte)34, 'C'));
31 System.out.println (xyz ());