Redundant qualifier name: fix false positive with same name variable

#KT-39200 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-06-18 12:52:40 +09:00
committed by Dmitry Gridin
parent bf26d87ee9
commit ba5e643cb2
4 changed files with 28 additions and 0 deletions
@@ -0,0 +1,9 @@
// PROBLEM: none
// WITH_RUNTIME
sealed class Foo {
object BAR : Foo()
companion object {
val BAR: Foo by lazy { <caret>Foo.BAR }
}
}