--TEST-- GMP operators throw errors with wrong parameter names --EXTENSIONS-- gmp --FILE-- getMessage(), "\n"; } } test(fn($WRONG_SCOPE_1 = 0, $WRONG_SCOPE_2 = 0) => gmp_init(1) < "x"); test(fn($WRONG_SCOPE_1 = 0, $WRONG_SCOPE_2 = 0) => gmp_init(1) < []); test(fn($WRONG_SCOPE_1 = 0, $WRONG_SCOPE_2 = 0) => gmp_init(1) + "x"); test(fn($WRONG_SCOPE_1 = 0, $WRONG_SCOPE_2 = 0) => gmp_init(1) + []); ?> --EXPECT-- Number is not an integer string Number must be of type GMP|string|int, array given Number is not an integer string Number must be of type GMP|string|int, array given