diff options
Diffstat (limited to 'tests/run-make/simple-rlib/foo.rs')
-rw-r--r-- | tests/run-make/simple-rlib/foo.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/run-make/simple-rlib/foo.rs b/tests/run-make/simple-rlib/foo.rs new file mode 100644 index 000000000..8d68535e3 --- /dev/null +++ b/tests/run-make/simple-rlib/foo.rs @@ -0,0 +1,5 @@ +extern crate bar; + +fn main() { + bar::bar(); +} |