blob: f16e2404fac21d6a0c7d7cc38c0b2dabaa8ec341 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.3.4.5-2-9
description: Function.prototype.bind allows Target to be a constructor (Date)
---*/
var bdc = Date.bind(null);
var s = bdc(0, 0, 0);
assert.sameValue(typeof(s), 'string', 'typeof(s)');