Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
backingField
/
OpenPrivateValDeferredInit.fir.kt
blob: 6636cd10fe5c2c679608e9c1e0ba112fe1b0e942 [
file
]
// LANGUAGE:+ProhibitOpenValDeferredInitialization
open
class
Foo
{
<!
INCOMPATIBLE_MODIFIERS
!>
private
<!>
<!
INCOMPATIBLE_MODIFIERS
!>
open
<!>
val foo
:
Int
init
{
foo
=
1
}
}