diff options
Diffstat (limited to 'testsuite/parseko/whilestmt01.stp')
-rwxr-xr-x | testsuite/parseko/whilestmt01.stp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/parseko/whilestmt01.stp b/testsuite/parseko/whilestmt01.stp new file mode 100755 index 00000000..2d0b90fb --- /dev/null +++ b/testsuite/parseko/whilestmt01.stp @@ -0,0 +1,9 @@ +#! stap -p1 + +# missing parens after while statment + +function decl() +{ + while 0 == 1 + printf("here\n") +} |