Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
cfg-variables
/
basic
/
VariablesInitialization.kt
blob: 58f7e678befa3ce5d33c8f0d231d6b694e1f937c [
file
] [
log
] [
blame
]
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
}