Report UNUSED_PARAMETER in setter #KT-21129 Fixed

This commit is contained in:
Mikhail Glukhikh
2018-04-27 16:09:29 +03:00
parent bcc1c02e73
commit e76debb12b
58 changed files with 118 additions and 115 deletions
@@ -14,7 +14,7 @@ open class A {
protected val z: String = "1"
public var zVar: String = "1"
protected set(value) {}
protected set(<!UNUSED_PARAMETER!>value<!>) {}
inline fun call() {
<!PROTECTED_CALL_FROM_PUBLIC_INLINE!>test<!>()
@@ -77,7 +77,7 @@ internal class AInternal {
protected val z: String = "1"
public var zVar: String = "1"
protected set(value) {}
protected set(<!UNUSED_PARAMETER!>value<!>) {}
inline fun call() {