test262/src/annex-b-fns/func/switch-dflt.template
2019-08-05 10:54:37 -04:00

21 lines
519 B
Plaintext

// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
path: annexB/language/function-code/switch-dflt-
name: >
Funtion declaration in the `default` clause of a `switch` statement in function scope
esid: sec-web-compat-functiondeclarationinstantiation
flags: [noStrict]
---*/
(function(/*{ params }*/) {
/*{ before }*/
switch (1) {
default:
function f() { /*{ body }*/ }
}
/*{ after }*/
}(/*{ args }*/));