]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/deriving-bounds.rs
Rollup merge of #61535 - ohadravid:test-generic-with-default-assiociated-type-re...
[rust.git] / src / test / ui / derives / deriving-bounds.rs
1 #[derive(Send)]
2 //~^ ERROR cannot find derive macro `Send` in this scope
3 struct Test;
4
5 #[derive(Sync)]
6 //~^ ERROR cannot find derive macro `Sync` in this scope
7 struct Test1;
8
9 pub fn main() {}