blob: 7535ed3ef8b3e5d143ee6c3cbcc2269e984d7ee4 [file] [log] [blame]
commit-queue@webkit.org2a979b32015-06-26 06:49:20 +00001description('Tests for ES6 arrow function declaration body as block');
2
3var af = a => { a + 1; };
4
5shouldBe("typeof af(0)", '"undefined"');
6
7var successfullyParsed = true;