ldmud/test/t-language/tf-function2.c
Fuchur 8b651ec563 - (prolang.y) forbid accessing closure arguments from within the
closure's context.


git-svn-id: svn://svn.bearnip.com/ldmud/trunk@2583 56160b6e-f8f8-0310-bd54-bccebfe6a2f2
2009-05-12 14:11:36 +00:00

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; { };
}