bug_OS14115684.js 577 B

1234567891011121314151617
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. function test(foo) {
  6. function nest() {
  7. {
  8. function foo() {
  9. console.log('pass');
  10. }
  11. }
  12. foo();
  13. }
  14. nest();
  15. }
  16. test(()=>console.log('fail'));