commit-queue@webkit.org | 2a979b3 | 2015-06-26 06:49:20 +0000 | [diff] [blame] | 1 | description('Tests for ES6 arrow function declaration body as block'); |
2 | |||||
3 | var af = a => { a + 1; }; | ||||
4 | |||||
5 | shouldBe("typeof af(0)", '"undefined"'); | ||||
6 | |||||
7 | var successfullyParsed = true; |