summaryrefslogtreecommitdiff
path: root/tests/asynchronous/bug654336.vala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/asynchronous/bug654336.vala')
-rw-r--r--tests/asynchronous/bug654336.vala8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/asynchronous/bug654336.vala b/tests/asynchronous/bug654336.vala
new file mode 100644
index 000000000..cbafc85e4
--- /dev/null
+++ b/tests/asynchronous/bug654336.vala
@@ -0,0 +1,8 @@
+async void foo<T>() { }
+
+async void bar () {
+ yield foo<int> ();
+}
+
+void main () {
+}