Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
compiler
/
testData
/
versionRequirement
/
jvmFieldInInterfaceCompanion.kt
blob: f73ec8cfa456bb30d14f2279035ff90912f06dc4 [
file
]
package
test
interface
Base
{
companion
object
{
@Suppress
(
"INAPPLICABLE_JVM_FIELD"
)
@JvmField
val foo
=
object
:
Base
{}
}
}