Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
lightClassByFqName
/
classJvmFieldAndCompanionJvmFieldProperty.kt
blob: 5eb9719283a6ee6d0728084b127159d1f93b62d6 [
file
]
// fields.KotlinClass
// WITH_STDLIB
// LIBRARY_PLATFORMS: JVM
package
fields
class
KotlinClass
{
@JvmField
val foo
:
String
=
"1"
companion
object
{
@JvmField
val foo
:
Int
=
0
}
}