Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
static
/
StaticMembersFromParentClassVisibility.java
blob: ac00bb500801f286d030e8a78e98b270cc196e17 [
file
] [
log
] [
blame
]
// 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
{
}