rust/src/test/compile-fail/unique-unique-kind.rs
Marijn Haverbeke 60ae1590af Switch to new param kind bound syntax
And remove support for the old syntax
2012-01-05 15:50:02 +01:00

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);
}