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