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
Release 0.11.7
[vala-lang.git]
/
tests
/
control-flow
/
for.vala
blob
c435c04171c209944edc4f202ae2e7d57d433226
1
void
void_method
() {
2
}
3
4
// http://bugzilla.gnome.org/show_bug.cgi?id=514801
5
void
test_for_void_methods
() {
6
for
(
void_method
(); ;
void_method
()) {
7
break
;
8
}
9
}
10
11
void
main
() {
12
test_for_void_methods
();
13
}
14