Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e1e07d20949869a38f2fc0b6ceeea1235721f07f
/
.
/
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
()
}