]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/derives/deriving-bounds.rs
Merge commit 'e214ea82ad0a751563acf67e1cd9279cf302db3a' into clippyup
[rust.git] / src / test / ui / derives / deriving-bounds.rs
index 52659bd11e0808cf090d2fa33fd427a45a881e7a..95d440420b065739f1b989a74598bf253a82bf21 100644 (file)
@@ -1,9 +1,11 @@
 #[derive(Send)]
 //~^ ERROR cannot find derive macro `Send` in this scope
+//~| ERROR cannot find derive macro `Send` in this scope
 struct Test;
 
 #[derive(Sync)]
 //~^ ERROR cannot find derive macro `Sync` in this scope
+//~| ERROR cannot find derive macro `Sync` in this scope
 struct Test1;
 
 pub fn main() {}