60ae1590af
And remove support for the old syntax
9 lines
147 B
Rust
9 lines
147 B
Rust
// error-pattern: instantiating a sendable type parameter with a copyable type
|
|
|
|
fn f<T: send>(i: T) {
|
|
}
|
|
|
|
fn main() {
|
|
let i = ~@100;
|
|
f(i);
|
|
} |