Skip to content

Commit db3ba02

Browse files
committed
Update multi-file test
1 parent 5107457 commit db3ba02

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

tests/multi-file/extern_functions/out/refcount/extern_functions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub fn unrelated2_2() -> i32 {
3131
pub fn unrelated3_3() -> i32 {
3232
return 3;
3333
}
34-
pub fn helper_4(x: i32) -> i32 {
34+
pub fn helper_0(x: i32) -> i32 {
3535
let x: Value<i32> = Rc::new(RefCell::new(x));
3636
({ unrelated1_1() });
3737
({ unrelated2_2() });

tests/multi-file/extern_functions/out/unsafe/extern_functions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub unsafe fn unrelated2_2() -> i32 {
3333
pub unsafe fn unrelated3_3() -> i32 {
3434
return 3;
3535
}
36-
pub unsafe fn helper_4(mut x: i32) -> i32 {
36+
pub unsafe fn helper_0(mut x: i32) -> i32 {
3737
(unsafe { unrelated1_1() });
3838
(unsafe { unrelated2_2() });
3939
(unsafe { unrelated3_3() });

tests/multi-file/extern_functions/test.expectations

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)