]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/deriving-bounds.rs
Merge pull request #1 from rust-lang/master
[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() {}