Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
convertToAnonymousObject
/
lambdaInParentheses.kt
blob: d68228bc4f63aedf0765c8f42c616264886fa584 [
file
]
// "Convert to anonymous object" "true"
interface
I
{
fun foo
():
String
}
fun test
()
{
val i
=
<caret>
I
({
""
})
}