// 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 es6id: B.3.3.1 flags: [noStrict] ---*/ (function(/*{ params }*/) { /*{ before }*/ switch (1) { default: function f() { /*{ body }*/ } } /*{ after }*/ }(/*{ args }*/));