aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/generics.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-10-30 14:28:30 +0000
committerAleksey Kladov <[email protected]>2019-10-30 14:43:14 +0000
commite5300ad3baf80c9903235a98a12b6cfd409e9f10 (patch)
treead15ef9afdda85d9978fa2e4fccbc890723fab08 /crates/ra_hir/src/generics.rs
parente56433432057712086ca623c4a1ef40089004839 (diff)
remove forward pointer for type_ref
Diffstat (limited to 'crates/ra_hir/src/generics.rs')
-rw-r--r--crates/ra_hir/src/generics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir/src/generics.rs b/crates/ra_hir/src/generics.rs
index 45f9713a0..9d5d18564 100644
--- a/crates/ra_hir/src/generics.rs
+++ b/crates/ra_hir/src/generics.rs
@@ -8,12 +8,12 @@ use std::sync::Arc;
8use hir_def::{ 8use hir_def::{
9 name::{self, AsName}, 9 name::{self, AsName},
10 path::Path, 10 path::Path,
11 type_ref::{TypeBound, TypeRef},
11}; 12};
12use ra_syntax::ast::{self, DefaultTypeParamOwner, NameOwner, TypeBoundsOwner, TypeParamsOwner}; 13use ra_syntax::ast::{self, DefaultTypeParamOwner, NameOwner, TypeBoundsOwner, TypeParamsOwner};
13 14
14use crate::{ 15use crate::{
15 db::{AstDatabase, DefDatabase, HirDatabase}, 16 db::{AstDatabase, DefDatabase, HirDatabase},
16 type_ref::{TypeBound, TypeRef},
17 Adt, Const, Container, Enum, EnumVariant, Function, HasSource, ImplBlock, Name, Struct, Trait, 17 Adt, Const, Container, Enum, EnumVariant, Function, HasSource, ImplBlock, Name, Struct, Trait,
18 TypeAlias, Union, 18 TypeAlias, Union,
19}; 19};