DEBSOURCES
Skip Quicknav
sources / vala / 0.56.18-5 / tests / semantic / yield-call-requires-async-context.test
12345678910111213
Invalid Code class Foo { async void foo () { } void bar () { yield foo (); } } void main () { }