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