diff options
| author | Andy Russell <arussell123@gmail.com> | 2020-02-04 17:08:50 -0500 |
|---|---|---|
| committer | Andy Russell <arussell123@gmail.com> | 2020-02-04 17:08:50 -0500 |
| commit | c0a110f7e6b8f8eab2d5c8c9cfc3e86c37ef2fd8 (patch) | |
| tree | ef72e99c6a76c65f42cb47f0a528fd407d4eff0e /src/test/ui/missing_debug_impls.rs | |
| parent | c9290dceee2cb6b882b26ec6e294560e51ef0853 (diff) | |
| download | rust-c0a110f7e6b8f8eab2d5c8c9cfc3e86c37ef2fd8.tar.gz rust-c0a110f7e6b8f8eab2d5c8c9cfc3e86c37ef2fd8.zip | |
use def_path_str for missing_debug_impls message
The lint message will now use the full, correct path to the `Debug` trait, even in `no_std`.
Diffstat (limited to 'src/test/ui/missing_debug_impls.rs')
| -rw-r--r-- | src/test/ui/missing_debug_impls.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/missing_debug_impls.rs b/src/test/ui/missing_debug_impls.rs index ff919292ae2..72fcba51588 100644 --- a/src/test/ui/missing_debug_impls.rs +++ b/src/test/ui/missing_debug_impls.rs @@ -4,7 +4,7 @@ use std::fmt; -pub enum A {} //~ ERROR type does not implement `fmt::Debug` +pub enum A {} //~ ERROR type does not implement `std::fmt::Debug` #[derive(Debug)] pub enum B {} @@ -17,7 +17,7 @@ impl fmt::Debug for C { } } -pub struct Foo; //~ ERROR type does not implement `fmt::Debug` +pub struct Foo; //~ ERROR type does not implement `std::fmt::Debug` #[derive(Debug)] pub struct Bar; |
