Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
lightClassByFqName
/
Delegation.kt
blob: f5757135fb03b6483293a17fee4fe09ebe14faaf [
file
]
// p.B
package
p
class
B
(
private
val f
:
I
)
:
I
by
f
{
}
interface
I
{
fun g
()
fun f
()
}