summaryrefslogtreecommitdiff
path: root/tests/semantic/foreach-next-missing-get.test
blob: 3cb75d98c16e1863708fbc073199eac2ab104c6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Invalid Code

public class Iterator<G> {
	public bool next () {
		return true;
	}
}

public class Test<G> {
	public Iterator<G> iterator () {
		return new Iterator<G> ();
	}
}

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