rust/src/test/run-pass/issue-2445.rs

26 lines
265 B
Rust
Raw Normal View History

2012-09-05 14:32:05 -05:00
use dvec::DVec;
2012-06-25 15:16:47 -05:00
struct c1<T: Copy> {
2012-09-06 21:40:15 -05:00
x: T,
}
impl<T: Copy> c1<T> {
2012-06-25 15:16:47 -05:00
fn f1(x: T) {}
}
fn c1<T: Copy>(x: T) -> c1<T> {
2012-09-05 17:58:43 -05:00
c1 {
x: x
}
}
impl<T: Copy> c1<T> {
2012-06-25 15:16:47 -05:00
fn f2(x: T) {}
}
fn main() {
c1::<int>(3).f1(4);
c1::<int>(3).f2(4);
}