mirror of https://github.com/tc39/test262.git
19 lines
482 B
JavaScript
19 lines
482 B
JavaScript
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
info: >
|
||
|
The production Block { } in strict code can't contain function
|
||
|
declaration;
|
||
|
description: Trying to declare function at the Block statement
|
||
|
negative: SyntaxError
|
||
|
bestPractice: "http://wiki.ecmascript.org/doku.php?id=conventions:no_non_standard_strict_decls"
|
||
|
flags: [onlyStrict]
|
||
|
---*/
|
||
|
|
||
|
"use strict";
|
||
|
{
|
||
|
function __func(){}
|
||
|
}
|
||
|
|