summaryrefslogtreecommitdiff
path: root/tests/basic-types/bug650993.vala
blob: db47e9d63812cbd77ab5e98313844a302a495f7d (plain)
1
2
3
4
5
6
7
void *test () {
	return null;
}

void main () {
	unowned int[] o = (int[]) test();
}