repo.or.cz
/
vala-lang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add -H command-line option to generate C header file for public API, stub
[vala-lang.git]
/
tests
/
control-flow
/
for.test
blob
60f3c97d8a226d9b3be763bbb94128d9a3b319b2
1
2
Program: test
3
4
void void_method () {
5
}
6
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
}
12
}
13
14
void main () {
15
test_for_void_methods ();
16
}
17