Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
staticFields
/
staticClassProperty.java
blob: 5aed7c8dbed0dc073ea1943a72bae2f9b40028dc [
file
] [
log
] [
blame
]
package
test
;
class
staticClassProperty
{
public
static
void
main
(
String
[]
args
)
{
int
i
=
Test
.
valProp
;
int
j
=
Test
.
varProp
;
Test
.
varProp
=
100
;
}
}