Files
kotlin/compiler/testData/loadJava/compiledJava/static/StaticMembersFromParentClassVisibility.java
Mikhail Glukhikh 4255c9f774 Add FIR enhancement tests, fix some exceptions / problems around them
Test data and tests themselves are based on
compiler/testData/loadJava/compiledJava
2019-03-14 17:52:33 +03:00

13 lines
233 B
Java
Vendored

// SKIP_IN_FIR_TEST
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 {
}