Fix Quickfix for missing operator adds infix modifier to created function (#1012)

Fixes #KT-14907
This commit is contained in:
Kirill Rakhman
2017-01-09 12:03:22 +01:00
committed by Dmitry Jemerov
parent af1ed78e17
commit 406bac684c
15 changed files with 19 additions and 18 deletions
@@ -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.
}
}