bailout3.js 498 B

1234567891011121314
  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 func3()
  6. {
  7. var a = 3;
  8. // Bailout point #1: test const prop
  9. return a;
  10. }
  11. WScript.Echo(func3());