summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A15.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A15.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A15.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A15.js b/js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A15.js
new file mode 100644
index 0000000000..31ea5be65f
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A15.js
@@ -0,0 +1,13 @@
+// Copyright 2011 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+es5id: 15.3.4.5_A15
+description: If IsCallable(func) is false, then throw a TypeError exception.
+---*/
+
+assert.throws(TypeError, function() {
+ Function.prototype.bind.call({}, {});
+}, 'Function.prototype.bind.call({}, {}) throws a TypeError exception');
+
+reportCompare(0, 0);