Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
convertToAnonymousObject
/
multiMethod.kt
blob: 5d93fa340595bb58ebe540b141a70dcf3bcfad2f [
file
]
// "Convert to anonymous object" "false"
// ACTION: Introduce import alias
// ERROR: Interface I does not have constructors
interface
I
{
fun foo
():
String
fun bar
():
Unit
}
fun test
()
{
<caret>
I
{
}
}