diff options
| author | bors <bors@rust-lang.org> | 2020-12-15 15:58:46 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-12-15 15:58:46 +0000 |
| commit | e15ec667cee92d47c64fc903227b2fdb81f9e530 (patch) | |
| tree | bdd5b0d1175f30fc6c186650087ccd64428bf4ce /compiler/rustc_interface/src | |
| parent | 99baddb57c0a950c1af8d125dc470894ddf052a7 (diff) | |
| parent | 0dcf99b2a260652cac9f04fe2957629e0c8e0464 (diff) | |
| download | rust-e15ec667cee92d47c64fc903227b2fdb81f9e530.tar.gz rust-e15ec667cee92d47c64fc903227b2fdb81f9e530.zip | |
Auto merge of #80055 - GuillaumeGomez:rollup-p09mweg, r=GuillaumeGomez
Rollup of 6 pull requests Successful merges: - #79379 (Show hidden elements by default when JS is disabled) - #79796 (Hide associated constants too when collapsing implementation) - #79958 (Fixes reported bugs in Rust Coverage) - #80008 (Fix `cargo-binutils` link) - #80016 (Use imports instead of rewriting the type signature of `RustcOptGroup::stable`) - #80025 (Replace some `println!` with `tidy_error!` to simplify) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs index 2273266a3ff..3e94f163773 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -587,7 +587,7 @@ fn test_debugging_options_tracking_hash() { tracked!(share_generics, Some(true)); tracked!(show_span, Some(String::from("abc"))); tracked!(src_hash_algorithm, Some(SourceFileHashAlgorithm::Sha1)); - tracked!(symbol_mangling_version, SymbolManglingVersion::V0); + tracked!(symbol_mangling_version, Some(SymbolManglingVersion::V0)); tracked!(teach, true); tracked!(thinlto, Some(true)); tracked!(tune_cpu, Some(String::from("abc"))); |
