We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68aa02d commit 413e98eCopy full SHA for 413e98e
src/compile.rs
@@ -1508,7 +1508,7 @@ code:
1508
self.compile_operand_words(vec![operands.next().unwrap()])?;
1509
let span = self.add_span(modified.modifier.span.clone());
1510
let count = a_sig.args.saturating_sub(b_sig.outputs);
1511
- if count == 0 {
+ if a_sig.args < b_sig.outputs {
1512
self.emit_diagnostic(
1513
format!(
1514
"{}'s second function has more outputs \
0 commit comments