blob: a5d47bb1d49c50395733b36c2e9caf91fe5d6444 [file] [log] [blame]
//file
package demo;
class Container {
int myInt = 1;
}
class One {
static Container myContainer = new Container();
}
class Test {
void test() {
byte b = One.myContainer.myInt;
}
}