We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5107457 commit db3ba02Copy full SHA for db3ba02
3 files changed
tests/multi-file/extern_functions/out/refcount/extern_functions.rs
@@ -31,7 +31,7 @@ pub fn unrelated2_2() -> i32 {
31
pub fn unrelated3_3() -> i32 {
32
return 3;
33
}
34
-pub fn helper_4(x: i32) -> i32 {
+pub fn helper_0(x: i32) -> i32 {
35
let x: Value<i32> = Rc::new(RefCell::new(x));
36
({ unrelated1_1() });
37
({ unrelated2_2() });
tests/multi-file/extern_functions/out/unsafe/extern_functions.rs
@@ -33,7 +33,7 @@ pub unsafe fn unrelated2_2() -> i32 {
pub unsafe fn unrelated3_3() -> i32 {
-pub unsafe fn helper_4(mut x: i32) -> i32 {
+pub unsafe fn helper_0(mut x: i32) -> i32 {
(unsafe { unrelated1_1() });
38
(unsafe { unrelated2_2() });
39
(unsafe { unrelated3_3() });
tests/multi-file/extern_functions/test.expectations
0 commit comments