summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/arrow-functions/arrow-returning-arrow-with-block-body-followed-by-regexp.js
blob: 8a53074e3d7a6e31be99a1c6a2a48e651a4cca77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

function t()
{
  var x = y => z => {} // ASI occurs here
  /Q/;
  return 42;
}

assertEq(t(), 42);

if (typeof reportCompare === "function")
  reportCompare(true, true);