1 2 3 4 5 6 7 8 9 10
// error-pattern: copying a noncopyable value resource r(b: bool) { } fn main() { let i <- ~r(true); let j = i; log(debug, i); }