blob: 3196e6a0aeb93c1b9278ed027c0c1303d9eb54b8 [file] [log] [blame]
package test;
class Parent {
private static int private_ = 1;
static int packagePrivate_ = 2;
protected static int protected_ = 3;
public static int public_ = 4;
}
class Child extends Parent {
}