Add a couple more tests to ptrderef.r

This commit is contained in:
Bill Currie 2012-11-18 13:28:46 +09:00
parent c5fa4fe92a
commit 3897142038
1 changed files with 2 additions and 0 deletions

View File

@ -11,4 +11,6 @@ ptrderef (int *to, int *from)
to = ++from;
*to = *from++;
*to = *++from;
*to = x;
*to++ = *from++;
}