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
libgda-4.0, gedit-2.20: Fix gedit typo and GdaXaTransactionId.data
[vala-lang.git]
/
tests
/
methods
/
bug598738.vala
blob
b6f3120d0564ae23a083e551685bc289bc036b95
1
delegate
void
Func
();
2
3
void
main
() {
4
var
array
=
new
int
[
10
];
5
Func foo
= () => {
6
assert
(
array
.
length
==
10
);
7
};
8
foo
();
9
}