Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
convertToAnonymousObject
/
noLambda.kt
blob: ea9f7667bd7fe342dc4fe493c4a94727c66c9ae4 [
file
]
// "Convert to anonymous object" "false"
// ACTION: Introduce import alias
// ACTION: Split property declaration
// ERROR: Interface I does not have constructors
interface
I
{
fun foo
():
String
}
fun test
()
{
val i
=
<caret>
I
()
}