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
vapi: Update GIR-based bindings
[vala-gnome.git]
/
tests
/
asynchronous
/
bug742621.vala
blob
1577cafd984f2acf38da9b6ba50393362fab7904
1
class
Xyzzy
:
Object
{
2
public
bool
b
{
get
;
set
; }
3
}
4
5
Xyzzy? xyzzy
=
null
;
6
7
private
void
on_b
() {
8
}
9
10
async
void
go_async
()
throws Error
{
11
xyzzy
.
notify
[
"b"
].
disconnect
(
on_b
);
12
}
13
14
void
main
() {
15
}