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