blob: 5aed7c8dbed0dc073ea1943a72bae2f9b40028dc [file] [log] [blame]
package test;
class staticClassProperty {
public static void main(String[] args) {
int i = Test.valProp;
int j = Test.varProp;
Test.varProp = 100;
}
}