aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_expand
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2020-02-02 12:06:51 +0000
committerKirill Bulatov <[email protected]>2020-02-02 12:06:51 +0000
commit6dae5cbb1190cde6a20aa1758c7d87e84933378e (patch)
treea2ff09d550a6c8e057d4340d63b5c957fa134590 /crates/ra_hir_expand
parenta9669a5505939c28fd97e53e1bbb1571c2408cf1 (diff)
Require ModPath for importing
Diffstat (limited to 'crates/ra_hir_expand')
-rw-r--r--crates/ra_hir_expand/src/name.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/ra_hir_expand/src/name.rs b/crates/ra_hir_expand/src/name.rs
index b2e10f445..44b47ec91 100644
--- a/crates/ra_hir_expand/src/name.rs
+++ b/crates/ra_hir_expand/src/name.rs
@@ -143,6 +143,9 @@ pub mod known {
143 std, 143 std,
144 core, 144 core,
145 alloc, 145 alloc,
146 hash,
147 fmt,
148 io,
146 iter, 149 iter,
147 ops, 150 ops,
148 future, 151 future,
@@ -167,6 +170,9 @@ pub mod known {
167 Neg, 170 Neg,
168 Not, 171 Not,
169 Index, 172 Index,
173 Display,
174 Iterator,
175 Hasher,
170 // Builtin macros 176 // Builtin macros
171 file, 177 file,
172 column, 178 column,