blob: abd38cef4a23d7318f520e392872956b369134c0 [file] [log] [blame]
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";
}