1 2 3 4 5 6 7 8 9
// error-pattern: instantiating a sendable type parameter with a copyable type fn f<T: send>(i: T) { } fn main() { let i = ~@100; f(i); }