forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#103764 - SarthakSingh31:issue-94187-2, r=co…
…mpiler-errors All verbosity checks in `PrettyPrinter` now go through `PrettyPrinter::should_print_verbose` Follow-up to rust-lang#103428. That pr only partially fixed rust-lang#94187. In some cases (like closures) `std::any::type_name` was still producing a different output when `-Zverbose` was enabled. This pr fixes those cases and adds a new function `PrettyPrinter::should_print_verbose`. This function should always be used over `self.tcx().sess.verbose()` inside a `impl PrettyPrinter`. Maybe closes rust-lang#94187 now. r? ``@compiler-errors``
- Loading branch information
Showing
3 changed files
with
35 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
// Check to insure that the output of `std::any::type_name` does not change based on -Zverbose | ||
// when printing constants | ||
// Check to insure that the output of `std::any::type_name` does not change based on `-Zverbose` | ||
// run-pass | ||
// edition: 2018 | ||
// revisions: normal verbose | ||
// [verbose]compile-flags:-Zverbose | ||
|
||
struct Wrapper<const VALUE: usize>; | ||
use std::any::type_name; | ||
|
||
fn main() { | ||
assert_eq!(std::any::type_name::<[u32; 0]>(), "[u32; 0]"); | ||
assert_eq!(std::any::type_name::<Wrapper<0>>(), "issue_94187_verbose_type_name::Wrapper<0>"); | ||
assert_eq!(type_name::<[u32; 0]>(), "[u32; 0]"); | ||
|
||
struct Wrapper<const VALUE: usize>; | ||
assert_eq!(type_name::<Wrapper<0>>(), "issue_94187_verbose_type_name::main::Wrapper<0>"); | ||
|
||
assert_eq!( | ||
type_name::<dyn Fn(u32) -> u32>(), | ||
"dyn core::ops::function::Fn<(u32,)>+Output = u32" | ||
); | ||
} |