G19990301_01.java 233 Bytes
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12
public class G19990301_01 {
  public static void main(String args[]) {
    foo pd = new foo();
    System.out.println ("Pass 1");
    pd.s = "test";
    System.out.println ("Pass 2");
  }
}
class foo {
  static String s = "test";
}