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