Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
classes
/
annotationsOnDelegatedMembers.kt
blob: 56b511be68426c856701075a16ff8c773279281f [
file
]
// FIR_IDENTICAL
// ISSUE: KT-64466
annotation
class
Ann
interface
Base
{
@Ann
fun func
()
@Ann
val prop
:
Int
var
propWithAccessors
:
Int
@Ann
get
@Ann
set
}
class
Delegated
(
b
:
Base
)
:
Base
by
b