mirror of
https://github.com/ldmud/ldmud
synced 2026-08-12 14:26:05 -04:00
closure's context. git-svn-id: svn://svn.bearnip.com/ldmud/trunk@2583 56160b6e-f8f8-0310-bd54-bccebfe6a2f2
9 lines
181 B
C
9 lines
181 B
C
/* function closure test 2
|
|
*
|
|
* Test accessing a closure argument from within the context of a closure.
|
|
*/
|
|
|
|
closure t()
|
|
{
|
|
return function void(mixed a) : mixed b = a; { };
|
|
}
|