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 ed7d97e commit 8aa7112Copy full SHA for 8aa7112
src/value_and_place.rs
@@ -872,7 +872,7 @@ pub(crate) fn assert_assignable<'tcx>(
872
let FnSig {
873
inputs_and_output: types_from,
874
c_variadic: c_variadic_from,
875
- unsafety: unsafety_from,
+ safety: unsafety_from,
876
abi: abi_from,
877
} = from_sig;
878
let to_sig = fx
@@ -881,7 +881,7 @@ pub(crate) fn assert_assignable<'tcx>(
881
882
inputs_and_output: types_to,
883
c_variadic: c_variadic_to,
884
- unsafety: unsafety_to,
+ safety: unsafety_to,
885
abi: abi_to,
886
} = to_sig;
887
let mut types_from = types_from.iter();
0 commit comments