Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/binaryOperations/plusExtraArgs.kt

9 lines
153 B
Kotlin

// "Create function 'plus'" "true"
class A<T>(val n: T) {
fun plus(): A<T> = throw Exception()
}
fun test() {
val a: A<Int> = A(1) + <caret>2
}