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