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