diff options
| author | bohan <bohan-zhang@foxmail.com> | 2023-05-12 02:09:46 +0800 |
|---|---|---|
| committer | bohan <bohan-zhang@foxmail.com> | 2023-05-18 09:22:29 +0800 |
| commit | f34678c0976086523f56a0f974e76cfc5ca2fc40 (patch) | |
| tree | 3b06a0b935d0e51280ba43bc0fcfdf765cda116d /compiler/rustc_session | |
| parent | 24c180c438b5ee9a150d20b9822bd7712bef8f62 (diff) | |
| download | rust-f34678c0976086523f56a0f974e76cfc5ca2fc40.tar.gz rust-f34678c0976086523f56a0f974e76cfc5ca2fc40.zip | |
fix(resolve): replace bindings to dummy for unresolved imports
Diffstat (limited to 'compiler/rustc_session')
| -rw-r--r-- | compiler/rustc_session/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/config.rs b/compiler/rustc_session/src/config.rs index e2b8d3eea2d..2ba827eeb4c 100644 --- a/compiler/rustc_session/src/config.rs +++ b/compiler/rustc_session/src/config.rs @@ -421,7 +421,7 @@ pub enum TrimmedDefPaths { GoodPath, } -#[derive(Clone, Hash)] +#[derive(Clone, Hash, Debug)] pub enum ResolveDocLinks { /// Do not resolve doc links. None, |
