This website requires JavaScript.
Explore
Help
Register
Sign In
Virtualization
/
meson
mirror of
https://gitlab.com/qemu-project/meson.git
Watch
1
Star
0
Fork
You've already forked meson
0
Code
Issues
Projects
Releases
Wiki
Activity
bf800101c2
meson
/
test cases
/
common
/
63 foreach
/
prog2.c
7 lines
82 B
C
Raw
Normal View
History
Unescape
Escape
Implement a foreach loop construct. Closes #17.
2014-11-06 02:38:35 +08:00
#
include
<stdio.h>
use '-Werror=unused-parameter' for gcc/clang on project tests and -fimplicit-none on fortran Fortran: check for undeclared variables by forcing implicit none everywhere C/C++: check for unused parameters and return types removed unused variables from test cases ci: do missing return and unused arg check with Github Actions
2019-09-06 02:41:33 +08:00
int
main
(
)
{
Implement a foreach loop construct. Closes #17.
2014-11-06 02:38:35 +08:00
printf
(
"
This is test #2.
\n
"
)
;
return
0
;
}