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