Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
convertToAnonymousObject
/
unit.kt
blob: e4887d72fb6fa47573454f91af092c1e5b138ad1 [
file
]
// "Convert to anonymous object" "true"
interface
I
{
fun bar
():
Unit
}
fun foo
()
{
}
fun test
()
{
<caret>
I
{
foo
()
}
}