repo.or.cz
/
vala-gnome.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 0.41.92
[vala-gnome.git]
/
tests
/
delegates
/
bug761360.vala
blob
ba90b69b6fcb9b36ebb44f04d666ef80133cc3a1
1
delegate
int
[]
ArrayReturnFunc
();
2
3
void
main
() {
4
ArrayReturnFunc f
= () => {
return
{
1
,
2
,
3
}; };
5
6
var
a
=
f
();
7
assert
(
a
.
length
==
3
);
8
}