summaryrefslogtreecommitdiff
path: root/tests/semantic/foreach-missing-iterator.test
blob: 66e67a04551aef18f08f6cafe7cd13a3ce2f14b7 (plain)
1
2
3
4
5
6
7
8
9
10
Invalid Code

public class Test<G> {
}

void main () {
	Test<string?> test = null;
	foreach (var t in test) {
	}
}