diff options
author | Aleksey Kladov <[email protected]> | 2019-03-04 13:38:54 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-03-04 13:40:08 +0000 |
commit | 0a19f4f1b4a12bd50032249be4c9298284c08e3c (patch) | |
tree | 5129bcf4ac18ef5a8b012a61c5b806620df1732e /crates/ra_parser/src/grammar | |
parent | dc8bcc1e42b573a8c315dd42a43c0fc4d5bfa8f8 (diff) |
allow aliases in underscores
this helps with
use foo::Trait as _;
syntax
Diffstat (limited to 'crates/ra_parser/src/grammar')
-rw-r--r-- | crates/ra_parser/src/grammar/items/use_item.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_parser/src/grammar/items/use_item.rs b/crates/ra_parser/src/grammar/items/use_item.rs index 5111d37eb..b36612726 100644 --- a/crates/ra_parser/src/grammar/items/use_item.rs +++ b/crates/ra_parser/src/grammar/items/use_item.rs | |||
@@ -76,6 +76,7 @@ fn use_tree(p: &mut Parser) { | |||
76 | // yet::another::path, | 76 | // yet::another::path, |
77 | // running::out::of::synonyms::for_::different::* | 77 | // running::out::of::synonyms::for_::different::* |
78 | // }; | 78 | // }; |
79 | // use Trait as _; | ||
79 | opt_alias(p); | 80 | opt_alias(p); |
80 | } | 81 | } |
81 | COLONCOLON => { | 82 | COLONCOLON => { |