Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
lightClassByFqName
/
DelegatedNested.kt
blob: 98f5dd38c35392a012a2c113498d004c0de2e801 [
file
]
// p.B
package
p
class
B
{
class
A
(
private
val f
:
I
)
:
I
by
f
{
}
}
interface
I
{
fun g
()
fun f
()
}