Fix Quickfix for missing operator adds infix modifier to created function (#1012)
Fixes #KT-14907
This commit is contained in:
committed by
Dmitry Jemerov
parent
af1ed78e17
commit
406bac684c
Vendored
+1
-1
@@ -2,7 +2,7 @@
|
||||
|
||||
class A<T>(val n: T) {
|
||||
fun plus(i: Int, s: String): A<T> = throw Exception()
|
||||
infix operator fun plus(t: T): A<T> {
|
||||
operator fun plus(t: T): A<T> {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user