Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
lightClassByFqName
/
classAndCompanionDelegatedProperty.kt
blob: 01b90af20d6e3e92526014c829233469e2f1a2be [
file
]
// fields.KotlinClass
// WITH_STDLIB
package
fields
class
KotlinClass
{
val foo
:
String
by
lazy
{
"1"
}
companion
object
{
val foo
:
Int
by
lazy
{
0
}
}
}