diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 1 | ||||
-rw-r--r-- | tests/asynchronous/bug598697.vala | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 84b888193..0d041e5a3 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -64,6 +64,7 @@ TESTS = \ asynchronous/bug596177.vala \ asynchronous/bug597294.vala \ asynchronous/bug598677.vala \ + asynchronous/bug598697.vala \ asynchronous/bug598698.vala \ dbus/basic-types.test \ dbus/arrays.test \ diff --git a/tests/asynchronous/bug598697.vala b/tests/asynchronous/bug598697.vala new file mode 100644 index 000000000..804039a42 --- /dev/null +++ b/tests/asynchronous/bug598697.vala @@ -0,0 +1,8 @@ +public class Foo { + public async void do_foo () { + Func f = () => {}; + } +} + +void main () { +} |