diff options
| author | Oliver Schneider <github35764891676564198441@oli-obk.de> | 2018-05-22 14:31:56 +0200 |
|---|---|---|
| committer | Oliver Schneider <github35764891676564198441@oli-obk.de> | 2018-06-07 17:33:53 +0200 |
| commit | 9b1bd94e37bbc68fcca9a97b03a0355b505bc302 (patch) | |
| tree | cd9b74c9766091c2d4fb442b24551f9a398f026e /src/librustc_metadata/decoder.rs | |
| parent | c131bdcaff68d35f96e954baac4340206779335f (diff) | |
| download | rust-9b1bd94e37bbc68fcca9a97b03a0355b505bc302.tar.gz rust-9b1bd94e37bbc68fcca9a97b03a0355b505bc302.zip | |
Add existential type definitons
Diffstat (limited to 'src/librustc_metadata/decoder.rs')
| -rw-r--r-- | src/librustc_metadata/decoder.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_metadata/decoder.rs b/src/librustc_metadata/decoder.rs index fd00cde375b..9e4f695d28f 100644 --- a/src/librustc_metadata/decoder.rs +++ b/src/librustc_metadata/decoder.rs @@ -419,6 +419,7 @@ impl<'tcx> EntryKind<'tcx> { EntryKind::ForeignFn(_) => Def::Fn(did), EntryKind::Method(_) => Def::Method(did), EntryKind::Type => Def::TyAlias(did), + EntryKind::Existential => Def::Existential(did), EntryKind::AssociatedType(_) => Def::AssociatedTy(did), EntryKind::Mod(_) => Def::Mod(did), EntryKind::Variant(_) => Def::Variant(did), |
