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