diff options
Diffstat (limited to 'pattern/void-expr.cmm')
-rw-r--r-- | pattern/void-expr.cmm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pattern/void-expr.cmm b/pattern/void-expr.cmm new file mode 100644 index 0000000..0f183a0 --- /dev/null +++ b/pattern/void-expr.cmm @@ -0,0 +1,7 @@ +void func(int arg) { } +int main(void) { + int a = 4; + float b = 5.5; + a = a + b - func(3); + return 0; +} |