Fixed broken testcases that came from tutorial sample code

[SVN r16935]
This commit is contained in:
Douglas Gregor
2003-01-19 14:44:34 +00:00
parent 4a46b5e1b9
commit 09657f1134
12 changed files with 26 additions and 25 deletions

View File

@ -9,6 +9,8 @@ struct X {
int foo(int);
};
int X::foo(int x) { return -x; }
int main()
{
@ -20,4 +22,3 @@ X x;
f(&x, 5);
}