aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/inline/0115_use_alias.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/tests/data/parser/inline/0115_use_alias.rs')
-rw-r--r--crates/ra_syntax/tests/data/parser/inline/0115_use_alias.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/crates/ra_syntax/tests/data/parser/inline/0115_use_alias.rs b/crates/ra_syntax/tests/data/parser/inline/0115_use_alias.rs
new file mode 100644
index 000000000..c7a141bbd
--- /dev/null
+++ b/crates/ra_syntax/tests/data/parser/inline/0115_use_alias.rs
@@ -0,0 +1,7 @@
1use some::path as some_name;
2use some::{
3 other::path as some_other_name,
4 different::path as different_name,
5 yet::another::path,
6 running::out::of::synonyms::for::different::*
7};