summaryrefslogtreecommitdiffstats
path: root/tests/incremental/remapped_paths_cc/auxiliary
diff options
context:
space:
mode:
Diffstat (limited to 'tests/incremental/remapped_paths_cc/auxiliary')
-rw-r--r--tests/incremental/remapped_paths_cc/auxiliary/extern_crate.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/incremental/remapped_paths_cc/auxiliary/extern_crate.rs b/tests/incremental/remapped_paths_cc/auxiliary/extern_crate.rs
new file mode 100644
index 000000000..627b99445
--- /dev/null
+++ b/tests/incremental/remapped_paths_cc/auxiliary/extern_crate.rs
@@ -0,0 +1,11 @@
+//[rpass1] compile-flags: -g
+//[rpass2] compile-flags: -g
+//[rpass3] compile-flags: -g --remap-path-prefix={{src-base}}=/the/src
+
+#![feature(rustc_attrs)]
+#![crate_type="rlib"]
+
+#[inline(always)]
+pub fn inline_fn() {
+ println!("test");
+}