test suite updates and additions for new capture semantics & suppression of error cascades

This commit is contained in:
Vern Paxson 2021-01-04 14:34:18 -08:00
parent 80f7d36582
commit fd309676bd
13 changed files with 47 additions and 39 deletions

View file

@ -3,9 +3,9 @@
local outer = 100;
local lambda = function()
local lambda = function[outer]()
{
local inner = function(a: count, b: count, c: count, d: count, e: count, f: count)
local inner = function[outer](a: count, b: count, c: count, d: count, e: count, f: count)
{
print outer + f;
};