summaryrefslogtreecommitdiff
path: root/tests/control-flow/for.vala
blob: c435c04171c209944edc4f202ae2e7d57d433226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
void void_method () {
}

// http://bugzilla.gnome.org/show_bug.cgi?id=514801
void test_for_void_methods () {
	for (void_method (); ; void_method ()) {
		break;
	}
}

void main () {
	test_for_void_methods ();
}