Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
AnonymousInitializerVarAndConstructor.kt
blob: 34b70b7c831cd90720f4dce82eb546acef04f73e [
file
]
// FIR_IDENTICAL
// http://youtrack.jetbrains.net/issue/KT-419
class
A
(
w
:
Int
)
{
var
c
=
w
init
{
c
=
81
}
}