Move almost all run-make-fulldeps to run-make
They pass fine.
This commit is contained in:
parent
f2d9a3d077
commit
433da1fc04
696 changed files with 2 additions and 2 deletions
21
tests/run-make/sepcomp-separate/foo.rs
Normal file
21
tests/run-make/sepcomp-separate/foo.rs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
fn magic_fn() -> usize {
|
||||
1234
|
||||
}
|
||||
|
||||
mod a {
|
||||
pub fn magic_fn() -> usize {
|
||||
2345
|
||||
}
|
||||
}
|
||||
|
||||
mod b {
|
||||
pub fn magic_fn() -> usize {
|
||||
3456
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {
|
||||
magic_fn();
|
||||
a::magic_fn();
|
||||
b::magic_fn();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue