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