11 lines
184 B
Kotlin
Vendored
11 lines
184 B
Kotlin
Vendored
// "Convert to anonymous object" "false"
|
|
// ERROR: Interface I does not have constructors
|
|
interface I {
|
|
fun foo(): String
|
|
fun bar(): Unit
|
|
}
|
|
|
|
fun test() {
|
|
<caret>I {
|
|
}
|
|
} |