Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
multiFileHighlighting
/
dependencies
/
delegates.kt
blob: 57a0b32097a96f057136cd3f7ca78ad1ea37d2e4 [
file
]
package
delegates
import
util
.*
class
D
(
val t
:
T
,
val t2
:
T2
):
T
by
t
,
T2
by
t2
{
fun anotherFun
()
{
}
}
class
WithDelegatedProperty
()
{
val i
:
Int
by
someInvalidCode
}