2012-12-10 17:32:48 -08:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-03-16 16:25:36 +01:00
|
|
|
fn foo<T>() {
|
2012-06-30 12:23:59 +01:00
|
|
|
1u.bar::<T>(); //~ ERROR: missing `copy`
|
2012-03-16 16:25:36 +01:00
|
|
|
}
|
|
|
|
|
2012-07-11 15:00:40 -07:00
|
|
|
trait bar {
|
2012-09-07 14:52:28 -07:00
|
|
|
fn bar<T:Copy>();
|
2012-07-11 15:00:40 -07:00
|
|
|
}
|
|
|
|
|
2012-08-07 18:10:06 -07:00
|
|
|
impl uint: bar {
|
2012-09-07 14:52:28 -07:00
|
|
|
fn bar<T:Copy>() {
|
2012-03-16 16:25:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|