xref: /php-src/ext/bcmath/tests/gh15968.phpt (revision c5b258fe)
1--TEST--
2GH-15968 BCMath\Number operators may typecast operand
3--EXTENSIONS--
4bcmath
5--FILE--
6<?php
7class MyString {
8    function __toString() {
9        return "2";
10    }
11}
12
13$a = new BCMath\Number("1");
14$b = new MyString();
15try {
16    var_dump($a + $b);
17} catch (Error $e) {
18    echo $e->getMessage();
19}
20?>
21--EXPECT--
22Unsupported operand types: BcMath\Number + MyString
23