summaryrefslogtreecommitdiff
path: root/tests/arrays/fixed-length-read-only-length.test
blob: b53eb112afded1ef47ed184b56b57c6573243fec (plain)
1
2
3
4
5
6
Invalid Code

void main () {
	int foo[2] = { 23, 42 };
	foo.length = 3;
}