mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
15 lines
208 B
Rust
15 lines
208 B
Rust
fn foo<T:'static>() {
|
|
1.bar::<T>(); //~ ERROR `T` cannot be sent between threads safely
|
|
}
|
|
|
|
trait Bar {
|
|
fn bar<T:Send>(&self);
|
|
}
|
|
|
|
impl Bar for usize {
|
|
fn bar<T:Send>(&self) {
|
|
}
|
|
}
|
|
|
|
fn main() {}
|