Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
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