summaryrefslogtreecommitdiffstats
path: root/tests/run-make/use-suggestions-rust-2018/ep-nested-lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/use-suggestions-rust-2018/ep-nested-lib.rs')
-rw-r--r--tests/run-make/use-suggestions-rust-2018/ep-nested-lib.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/run-make/use-suggestions-rust-2018/ep-nested-lib.rs b/tests/run-make/use-suggestions-rust-2018/ep-nested-lib.rs
new file mode 100644
index 000000000..62a0a9d8f
--- /dev/null
+++ b/tests/run-make/use-suggestions-rust-2018/ep-nested-lib.rs
@@ -0,0 +1,7 @@
+#![crate_type = "rlib"]
+
+pub mod foo {
+ pub mod bar {
+ pub struct Baz;
+ }
+}