blob: 4f85a9e0934978e4318d310a7b29a9a12ab672df [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: String.prototype.substring (start, end)
es5id: 15.5.4.15_A1_T14
description: Used one argument, that is function(){}(). Instance is string
---*/
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if ("report".substring(function() {}()) !== "report") {
$ERROR('#1: "report".substring(function(){}()) === "report". Actual: ' + "report".substring(function() {}()));
}
//
//////////////////////////////////////////////////////////////////////////////