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
/
delegates
/
bug595610.vala
blob
2882a64b8b7ead5c1d0f0a1f96265afc3f8d9179
1
struct
Foo
{
2
int
bar
;
3
}
4
5
delegate Foo
Func
();
6
7
Foo
do_foo
() {
8
return
Foo
();
9
}
10
11
void
main
() {
12
Func func
=
do_foo
;
13
func
();
14
}