summaryrefslogtreecommitdiff
path: root/external/contributions/Google/sputnik_conformance_modified/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A1_T1.js
blob: eaa29e682f5082cabdd5930cda2bcd9569e03f6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
* @name: S13.2_A1_T1;
* @section: 13.2;
* @assertion: A "prototype" property is automatically created for every function;
* @description: Using "function __func(){}" as a FunctionDeclaration; 
*/

function __func(){};

//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (__func.prototype === undefined) {
	$ERROR('#1: __func.prototype !== undefined');
}
//
//////////////////////////////////////////////////////////////////////////////