]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/missing_debug_impls.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / missing_debug_impls.rs
index 72fcba51588b406f73b5c88c63743c6072d3eb4e..dc4dacfc4688ec1c4b47b20ac14c9ec68bcf859e 100644 (file)
@@ -4,7 +4,7 @@
 
 use std::fmt;
 
-pub enum A {} //~ ERROR type does not implement `std::fmt::Debug`
+pub enum A {} //~ ERROR type does not implement `Debug`
 
 #[derive(Debug)]
 pub enum B {}
@@ -17,7 +17,7 @@ impl fmt::Debug for C {
     }
 }
 
-pub struct Foo; //~ ERROR type does not implement `std::fmt::Debug`
+pub struct Foo; //~ ERROR type does not implement `Debug`
 
 #[derive(Debug)]
 pub struct Bar;