Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
75d8a5bca606366254123abd80c77147a3d426a6
/
.
/
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
}
}