repo.or.cz
/
vala-lang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
girparser: Simplify postprocessing callbacks. Use symbols info for records.
[vala-lang.git]
/
tests
/
basic-types
/
bug632322.vala
blob
6116b9662653bc6f917b06b2ad87254c557f5a19
1
void
main
() {
2
int
[]
foo
=
new
int
[
42
];
3
int
i
=
1
;
4
foo
[
i
=
i
-
1
] =
23
;
5
assert
(
i
==
0
);
6
}