Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
AnnotatedLocalObjectFun.kt
blob: 35ff1b7231e27a20e5d432dd0641d5c73bffc4ae [
file
]
// FIR_IDENTICAL
annotation
class
My
fun foo
()
{
val s
=
object
{
@My
fun bar
()
{}
}
s
.
bar
()
}