Release 0.11.7
[vala-lang.git] / tests / control-flow / for.vala
blobc435c04171c209944edc4f202ae2e7d57d433226
1 void void_method () {
4 // http://bugzilla.gnome.org/show_bug.cgi?id=514801
5 void test_for_void_methods () {
6 for (void_method (); ; void_method ()) {
7 break;
11 void main () {
12 test_for_void_methods ();