Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
delegation
/
genericProperty.kt
blob: adeb02c93c5d0647e69434e7d2509e7adc265493 [
file
]
interface
I
{
val
<
T
>
T
.
id
:
T
get
()
=
this
}
class
A
(
i
:
I
)
:
I
by
i
fun box
():
String
=
with
(
A
(
object
:
I
{}))
{
"OK"
.
id
}