summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/return/S12.9_A3.js
blob: 979dd039d1d35f3f67691dfe4f01cfdab6d16da8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: If Expression is omitted, the return value is undefined
es5id: 12.9_A3
description: Return without Expression
---*/

var __evaluated;
__evaluated = (function (){return;})();

//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (__evaluated !== undefined) {
	throw new Test262Error('#1: If Expression is omitted, the return value is undefined');
}
//
//////////////////////////////////////////////////////////////////////////////

reportCompare(0, 0);