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