Add -H command-line option to generate C header file for public API, stub
[vala-lang.git] / tests / control-flow / for.test
blob60f3c97d8a226d9b3be763bbb94128d9a3b319b2
2 Program: test
4 void void_method () {
7 // http://bugzilla.gnome.org/show_bug.cgi?id=514801
8 void test_for_void_methods () {
9         for (void_method (); ; void_method ()) {
10                 break;
11         }
14 void main () {
15         test_for_void_methods ();