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