Files
kotlin-fork/idea/testData/quickfix/convertToAnonymousObject/multiMethod.kt
T
Dmitry Gridin 147521d6cb Add intention to introduce import alias
#KT-16118 Fixed
 #KT-30007 Fixed
2019-02-21 12:25:09 +03:00

12 lines
218 B
Kotlin
Vendored

// "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 {
}
}