mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-07 17:07:37 +00:00
13 lines
233 B
Java
13 lines
233 B
Java
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";
|
|
}
|
|
|