summaryrefslogtreecommitdiff
path: root/tests/semantic/cast-void-not-allowed.test
blob: 965ef235cdd90bef1a8ec751f86e2185a5fcc328 (plain)
1
2
3
4
5
6
7
8
9
Invalid Code

bool foo () {
	return true;
}

void main () {
	(void) foo ();
}