summaryrefslogtreecommitdiff
path: root/tests/control-semantic/argument-null-ref.test
blob: d54b3a62915b3900384b577b21ee3ab518aa7312 (plain)
1
2
3
4
5
6
7
8
Invalid Code

void foo (ref string arg) {
}

void main () {
	foo (null);
}