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