Skip to content

Commit 6a47fa1

Browse files
committed
remove unneeded & that now fails to coerce
cc #40924
1 parent 6c02272 commit 6a47fa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_trans/abi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ impl FnType {
369369
match sig.inputs().last().unwrap().sty {
370370
ty::TyTuple(ref tupled_arguments, _) => {
371371
inputs = &sig.inputs()[0..sig.inputs().len() - 1];
372-
&tupled_arguments
372+
tupled_arguments
373373
}
374374
_ => {
375375
bug!("argument to function with \"rust-call\" ABI \

0 commit comments

Comments
 (0)