SIFR-CALL-0003 belongs to the Function and method calls diagnostic family. It means: duplicate argument from positional and keyword overlap.
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-0003 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.
