]> git.proxmox.com Git - rustc.git/blame - src/test/ui/builtin-superkinds/builtin-superkinds-typaram-not-send.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / builtin-superkinds / builtin-superkinds-typaram-not-send.rs
CommitLineData
1a4d82fc 1// Basic test for traits inheriting from the builtin kinds.
970d7e83 2
1a4d82fc 3trait Foo : Send { }
970d7e83 4
8faf50e0
XL
5impl <T: Sync+'static> Foo for T { }
6//~^ ERROR `T` cannot be sent between threads safely
1a4d82fc
JJ
7
8fn main() { }