19 lines
223 B
Plaintext
Raw Normal View History

2013-10-18 13:33:46 +02:00
public class Access{
public static String staticMember="def";
public static staticMethod() {
return "abc";
}
}
class TestStaticAccess {
public method1(a,b) {
x;
a=x.staticMember;
b=x.staticMethod();
}
}