Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49ce95ac6651db5c91015f9b0de5c3bff2185e61
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
static
/
StaticMembersFromParentClassVisibility.java
blob: 8cc5290ff3588e4fa94f8871b55d9e57672c8795 [
file
]
// SKIP_IN_FIR_TEST
// Reason: KT-4455
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
{
}