Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
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
()
}