summaryrefslogtreecommitdiff
path: root/tests/control-flow/unassigned-local-variable.test
blob: 279b4d929d8cdcca33a73b33c836fa08fd39ac43 (plain)
1
2
3
4
5
6
7
8
9
10
11
Invalid Code

void main () {
	bool cond = false;

	string s;
	if (cond) {
		s = "foo";
	}
	print ("%s", s);
}