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
/
bug639751.vala
blob
8c69a81eeb8a9c79f9da3620e887a97ec6e384ea
1
struct
Foo
{
2
public
unowned SourceFunc bar
;
3
}
4
5
void
main
() {
6
var
foo
=
Foo
();
7
foo
.
bar
= () => {
foo
.
bar
=
null
;
return
false
; };
8
var
baz
=
foo
;
9
baz
.
bar
();
10
}