blob: 0521bb35986249cf599d0859a2df275d73fd037b [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function AsmModule() {
"use asm";
function bd() {
return +0;
}
function foo()
{
var y = 5.5;
y = +bd();
return +y;
}
return foo;
}
var asmModule = AsmModule();
if(asmModule() == 0)
{
WScript.Echo("pass");
}