blob: 0223deffd87a5c1a990dc177d4df00d3c98f5b78 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* 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 a() {}
function firstCall() {
a();
secondCall();
return 43;
}
|