Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
cfg-variables
/
basic
/
VariablesInitialization.kt
blob: 58f7e678befa3ce5d33c8f0d231d6b694e1f937c [
file
]
fun foo
()
{
val a
=
1
val b
:
Int
b
=
2
42
}
fun bar
(
foo
:
Foo
)
{
foo
.
c
foo
.
c
=
2
42
}
interface
Foo
{
var
c
:
Int
}