blob: 6636cd10fe5c2c679608e9c1e0ba112fe1b0e942 [file]
// LANGUAGE:+ProhibitOpenValDeferredInitialization
open class Foo {
<!INCOMPATIBLE_MODIFIERS!>private<!> <!INCOMPATIBLE_MODIFIERS!>open<!> val foo: Int
init {
foo = 1
}
}