Describe the bug
when passing a negative number as argument in a function call or as a parameter it triggers
To Reproduce
Put the below code snipped in a module.
Code
sub test1()
call dummy(param, -0.15) ' having the - causes the error
end sub
sub test(optional filter_test As Variant = -0.1) ' passing this as an optional parameter has the same effect
call dummy(param, 2.15)
end sub
Expected behavior
passing a negative number as argument should not trigger any error.
Screenshots

