summaryrefslogtreecommitdiff
path: root/tests/semantic/return-missing-ownership.test
blob: 233c34308563c44d03c3e317f14ccf09f2de2afc (plain)
1
2
3
4
5
6
7
8
9
Invalid Code

unowned string foo () {
	var s = "foo";
	return s;
}

void main () {
}