aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/additional-trait-bounds1.rs
blob: 449a72fe4612cc1e1ad35a3d040511bbe86a1eb9 (plain)
1
2
3
4
5
6
7
8
9
10
#![feature(optin_builtin_traits)]

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

trait A {}

impl dyn A + Send {}
impl dyn A + Send + Sync {}