SIFR-CALL-0001 belongs to the Function and method calls diagnostic family. It means: wrong positional argument count.
Why It Happens
The call site does not match the callable signature Sifr inferred or checked. Fix the number of arguments, names, types, or overload selection.Use
sifr --explain SIFR-CALL-0001 locally to see the renderer’s exact message template and any machine-applicable suggestions for the compiler version you are running.Erroneous Code
How To Fix It
Make the call match the function signature: provide required arguments once, use known keyword names, and call only callable values.Fixed Code
Details
See the Error Codes index for the complete catalog.
