Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
duplicateJvmSignature
/
delegatedProperty.kt
blob: c09a0c3b024046e33d4885bb2889ed3e3376dfc2 [
file
]
// FIR_IDENTICAL
import
kotlin
.
properties
.
ReadWriteProperty
import
kotlin
.
properties
.
Delegates
class
C
{
val
`x$delegate`
:
ReadWriteProperty
<
Any
,
Any
>?
=
null
val x
:
String
?
by
Delegates
.
notNull
()
}