From 22700451b50c25bc85e94c443b4747273319b46b Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrg=20Billeter?= Date: Sat, 26 Sep 2009 15:57:14 +0200 Subject: [PATCH] Add test for bug 596177 --- tests/Makefile.am | 1 + tests/asynchronous/bug596177.vala | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 tests/asynchronous/bug596177.vala diff --git a/tests/Makefile.am b/tests/Makefile.am index df434411a..f37128dff 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -46,6 +46,7 @@ TESTS = \ objects/bug593260.vala \ errors/errors.vala \ errors/bug596228.vala \ + asynchronous/bug596177.vala \ dbus/basic-types.test \ dbus/arrays.test \ dbus/async.test \ diff --git a/tests/asynchronous/bug596177.vala b/tests/asynchronous/bug596177.vala new file mode 100644 index 000000000..d80bec3d1 --- /dev/null +++ b/tests/asynchronous/bug596177.vala @@ -0,0 +1,8 @@ +class Foo { + public async void do_foo () { + var t = typeof (T); + } +} + +void main () { +} -- 2.47.3