mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 21:55:31 +00:00

`TyCtxt::short_string` ensures that user visible type paths aren't overwhelming on the terminal output, and properly saves the long name to disk as a side-channel. We already use these throughout the compiler and have been using them as needed when users find cases where the output is verbose. This is a proactive search of some cases to use `short_string`. We add support for shortening the path of "trait path only". Every manual use of `short_string` is a bright marker that that error should be using structured diagnostics instead (as they have proper handling of long types without the maintainer having to think abou tthem). When we don't actually print out a shortened type we don't need the "use `--verbose`" note. On E0599 show type identity to avoid expanding the receiver's generic parameters. Unify wording on `long_ty_path` everywhere.
16 lines
279 B
Rust
16 lines
279 B
Rust
//@ compile-flags: -Zwrite-long-types-to-disk=yes
|
|
trait Next {
|
|
type Next: Next;
|
|
}
|
|
|
|
struct GetNext<T: Next> {
|
|
t: T,
|
|
}
|
|
|
|
impl<T: Next> Next for GetNext<T> {
|
|
type Next = <GetNext<T::Next> as Next>::Next;
|
|
//~^ ERROR overflow evaluating the requirement
|
|
}
|
|
|
|
fn main() {}
|