KT-21780 Wrong redundant setter inspection (#1453)

This commit is contained in:
Toshiaki Kameyama
2018-01-03 19:14:23 +09:00
committed by Dmitry Jemerov
parent 640c28ceaf
commit de185b79d0
3 changed files with 16 additions and 0 deletions
@@ -0,0 +1,9 @@
// PROBLEM: none
interface A {
var myVar: Boolean
}
class X : A {
override var myVar: Boolean = false
<caret>set(value) {}
}