aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/auto_traits2.rs
blob: 382d44608113556a3703d02126096475ba4141db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![feature(optin_builtin_traits)]

pub unsafe auto trait Send {}
#[lang = "sync"]
pub unsafe auto trait Sync {}

trait A {
    fn a_method(&self) {}
}

fn foo(a: &(dyn A + Send + Sync)) {
    a.a_method();
}

struct S;

impl A for S {
    fn a_method(&self) {} // { dg-warning "unused name" }
}

fn main() {
    let s = S;

    foo(&s);
}