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