blob: 1b117cfc6adf6cb1eb0bccf64b2c835a632d921c [file] [log] [blame]
// "Remove 'private' modifier" "true"
interface Foo {
val bar: String
}
open class FooImpl : Foo {
override var bar: String = ""
<caret>private set
}