blob: 38ee61bdc7ed61797cf88a54153804064fb6308d [file] [log] [blame]
description('Tests for ES6 arrow function nested declaration');
var af1, af2, af3;
af1 = af2 = af3 => af1 = af2 = af3;
debug('af1 = af2 = af3 => af1 = af2 = af3')
shouldBe('af1', 'af2');
af1(13);
shouldBe('af2', '13');
shouldBe('af1', '13');
var successfullyParsed = true;