summaryrefslogtreecommitdiff
path: root/tests/semantic/methodcall-yield-with-begin.test
blob: d29ec9176b5779f0ce9450772a4a1e988c627081 (plain)
1
2
3
4
5
6
7
8
9
10
11
Invalid Code

async void foo () {
}

async void bar () {
	yield foo.begin ();
}

void main () {
}