quickfix to add 'operator' keyword to operator-like functions

This commit is contained in:
Dmitry Jemerov
2015-09-24 15:25:32 +02:00
parent 3a519ccc0a
commit bda0bd1de1
9 changed files with 119 additions and 5 deletions
@@ -0,0 +1,4 @@
// "Add 'operator' modifier" "true"
class A {
operator fun plus(other: A): A = A()
}