CompiledFunction::cfsa
The argument passed to the CompiledFunction expression is an inexact real number:
cf = Compile[{{x, _Integer}}, x + 1]cf[1.5]Compiled evaluation proceeds without error if the argument has the expected type:
cf[5]Clear[cf]