]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Add test for bug 596177
authorJürg Billeter <j@bitron.ch>
Sat, 26 Sep 2009 13:57:14 +0000 (15:57 +0200)
committerJürg Billeter <j@bitron.ch>
Sat, 26 Sep 2009 13:57:14 +0000 (15:57 +0200)
tests/Makefile.am
tests/asynchronous/bug596177.vala [new file with mode: 0644]

index df434411a0bb3083840520f3162b2298d1a17c32..f37128dfffedf4359dc7a146beeea92ca4233ea8 100644 (file)
@@ -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 (file)
index 0000000..d80bec3
--- /dev/null
@@ -0,0 +1,8 @@
+class Foo<T> {
+       public async void do_foo () {
+               var t = typeof (T);
+       }
+}
+
+void main () {
+}