Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/test_data/parser/inline/ok/0110_use_path.rs')
| -rw-r--r-- | crates/syntax/test_data/parser/inline/ok/0110_use_path.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/crates/syntax/test_data/parser/inline/ok/0110_use_path.rs b/crates/syntax/test_data/parser/inline/ok/0110_use_path.rs deleted file mode 100644 index 1e436a6bc2..0000000000 --- a/crates/syntax/test_data/parser/inline/ok/0110_use_path.rs +++ /dev/null @@ -1,8 +0,0 @@ -use ::crate_name; // Rust 2018 - All flavours -use crate_name; // Rust 2018 - Anchored paths -use item_in_scope_or_crate_name; // Rust 2018 - Uniform Paths - -use self::module::Item; -use crate::Item; -use self::some::Struct; -use crate_name::some_item; |