summaryrefslogtreecommitdiff
path: root/tests/control-flow/garray-foreach-variable.test
blob: b79f34397ccc8a8117f2cc4d5936bb0f5a5eec7f (plain)
1
2
3
4
5
6
7
Invalid Code

void main () {
	var array = new Array<string> ();
	foreach (int element in array) {
	}
}