// "class org.jetbrains.kotlin.idea.quickfix.RemoveFunctionParametersFix" "false" //ERROR: No value passed for parameter other interface StringComparable { public fun compareTo(other: String): Int = 0 } class X: Comparable, StringComparable fun main(args: Array) { X().compareTo() }