1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-16 22:14:23 +03:00
inform7/inform6/Tests/include/replacerenametest/replacerename_inc2.h
2022-03-06 23:37:05 +00:00

17 lines
372 B
C
Executable file

! This include appears after the functions are called (so they are forward
! definitions); it is not a system file.
! Will be replaced (entirely).
[ funcbeta;
print "original funcbeta.^";
failures++; ! Should not be called.
return 3;
];
! Will be replaced, but will live on as funcdeltaorig.
[ funcdelta;
print "original funcdelta.^";
return 4;
];