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