bug_OS_13412380.js 552 B

12345678910111213141516
  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. var x = 'outside';
  6. var result;
  7. (function() {
  8. var eval = WScript.LoadScript("", "samethread").eval;
  9. eval('var x = "inside";');
  10. result = x;
  11. }());
  12. print("passed");