aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/inline/0114_use_path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/tests/data/parser/inline/0114_use_path.rs')
-rw-r--r--crates/ra_syntax/tests/data/parser/inline/0114_use_path.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/crates/ra_syntax/tests/data/parser/inline/0114_use_path.rs b/crates/ra_syntax/tests/data/parser/inline/0114_use_path.rs
index 1e436a6bc..328e94736 100644
--- a/crates/ra_syntax/tests/data/parser/inline/0114_use_path.rs
+++ b/crates/ra_syntax/tests/data/parser/inline/0114_use_path.rs
@@ -1,8 +1,3 @@
1use ::crate_name; // Rust 2018 - All flavours 1use ::crate_name; // Rust 2018 - All flavours
2use crate_name; // Rust 2018 - Anchored paths 2use crate_name; // Rust 2018 - Anchored paths
3use item_in_scope_or_crate_name; // Rust 2018 - Uniform Paths 3use item_in_scope_or_crate_name; // Rust 2018 - Uniform Paths
4
5use self::module::Item;
6use crate::Item;
7use self::some::Struct;
8use crate_name::some_item;