fix 'operator' modifier inspection

#KT-9349 Fixed
This commit is contained in:
Dmitry Jemerov
2015-09-28 13:55:09 +02:00
parent 58796da453
commit ee1175d5e5
5 changed files with 47 additions and 5 deletions
@@ -0,0 +1,4 @@
// "Add 'operator' modifier" "true"
class A {
operator fun <caret>contains(other: A): Boolean = true
}