Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
AnnotatedLocalObjectProperty.kt
blob: 87075c9bc9c522f8fdf0b73fbcc522c02bc08e70 [
file
]
// FIR_IDENTICAL
annotation
class
My
fun foo
():
Int
{
val s
=
object
{
@My
val bar
:
Int
=
0
}
return
s
.
bar
}