Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
convertToAnonymousObject
/
hasConcreateMember.kt.after
blob: 059ee127fb4299487b2d0967162d8a7d73c314d4 [
file
]
// "Convert to anonymous object" "true"
interface
I
{
fun a
()
fun b
()
{}
}
fun foo
(
i
:
I
)
{}
fun test
()
{
foo
(
object
:
I
{
override
fun a
()
{
}
})
}