Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
delegatedProperty
/
abstractDelegatedProperty.fir.kt
blob: 44d2edc6ab95950e66b69704cab9c0b7a30b844e [
file
]
// DIAGNOSTICS: -UNUSED_PARAMETER
import
kotlin
.
reflect
.
KProperty
abstract
class
A
{
abstract
val a
:
Int
by
<!
ABSTRACT_DELEGATED_PROPERTY
!>
Delegate
()<!>
}
class
Delegate
{
operator
fun getValue
(
t
:
Any
?,
p
:
KProperty
<*>):
Int
{
return
1
}
}