summaryrefslogtreecommitdiff
path: root/tests/semantic/pointer-indirection-void-not-supported.test
blob: d10f65f2caeeb8c8fe6b241881a142e6edff2668 (plain)
1
2
3
4
5
6
Invalid Code

void main () {
	void* foo = null;
	*foo = null;
}