Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
backingField
/
MustBeInitializedEffectivelyFinalOn.kt
blob: 7ead2fc74183135082b7d4e7b9747630d6b9871c [
file
]
// FIR_IDENTICAL
// LANGUAGE:+TakeIntoAccountEffectivelyFinalInMustBeInitializedCheck
open
class
Base
{
open
var
x
:
String
=
""
}
class
Foo
:
Base
()
{
override
var
x
:
String
init
{
x
=
""
}
}