Don't suggest make object container open #KT-11003 Fixed

This commit is contained in:
Mikhail Glukhikh
2017-05-18 19:21:04 +03:00
committed by Mikhail Glukhikh
parent 3b4dafe691
commit a73cf0e1fe
3 changed files with 20 additions and 2 deletions
@@ -0,0 +1,13 @@
// "Make 'MyClass' open" "false"
// ACTION: Make 'y' not open
// ACTION: Add 'const' modifier
// ACTION: Make internal
// ACTION: Make private
// ACTION: Specify type explicitly
// See KT-11003
class MyClass {
companion object {
<caret>open val y = 4
}
}