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