]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/issue-17959.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / issue-17959.rs
index 56a66ecc8aa456898fe8080bd999e14f32990120..23be4d3536117fe50a594e3607af41dcb7780b83 100644 (file)
@@ -19,7 +19,7 @@ struct G<T: ?Sized> {
 }
 
 impl<T> Drop for G<T> {
-//~^ ERROR: The requirement `T : core::marker::Sized` is added only by the Drop impl. [E0367]
+//~^ ERROR: The requirement `T: core::marker::Sized` is added only by the Drop impl. [E0367]
     fn drop(&mut self) {
         if !self._ptr.is_null() {
         }