fefrei / prog2tests

Automatically exported from code.google.com/p/prog2tests

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Correct handling of more than 4 arguments

GoogleCodeExporter opened this issue · comments

StackFrame handles that internally and perfectly fine.

But:

If you are not using StackFrame (either because you didn't know or you don't 
want to), then it gets tricky.
=> Test it a bit, like this:

int foo(int a, int b, int c, int d, int e) {
    return a+b+c+d+e;
}

Original issue reported on code.google.com by Nichmen...@gmail.com on 17 Jul 2012 at 7:59

Already included in MassTesting.testManyArguments

Original comment by Nichmen...@gmail.com on 24 Jul 2012 at 7:01

  • Changed state: Added