summaryrefslogtreecommitdiff
path: root/tests/arrays/resize-unowned-invalid-3.test
blob: b76d4b7c8157bd67b184903d78c6ce2098273d83 (plain)
1
2
3
4
5
6
7
8
9
Invalid Code

unowned string[] foo;

void main () {
	var bar = new string[23];
	foo = bar;
	foo.resize (42);
}