vapi: Update GIR-based bindings
[vala-gnome.git] / tests / asynchronous / bug742621.vala
blob1577cafd984f2acf38da9b6ba50393362fab7904
1 class Xyzzy : Object {
2 public bool b { get; set; }
5 Xyzzy? xyzzy = null;
7 private void on_b() {
10 async void go_async() throws Error {
11 xyzzy.notify["b"].disconnect(on_b);
14 void main () {