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
/
bug639751.vala
blob
055a6deec5143bc81a8a59fcde0308454362d3c9
1
struct
Foo
{
2
public
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
}