Might be 'const': fix false positive in object literal #KT-23756 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-05-01 16:08:38 +03:00
committed by Mikhail Glukhikh
parent 84d71e5a8c
commit da92c844a6
3 changed files with 15 additions and 0 deletions
@@ -0,0 +1,7 @@
// PROBLEM: none
interface Foo
val foo = object : Foo {
val <caret>x = 1
}