blob: 52659bd11e0808cf090d2fa33fd427a45a881e7a [file] [log] [blame]
#[derive(Send)]
//~^ ERROR cannot find derive macro `Send` in this scope
struct Test;
#[derive(Sync)]
//~^ ERROR cannot find derive macro `Sync` in this scope
struct Test1;
pub fn main() {}