Merge branch 'incoming' into resource-to-class

This commit is contained in:
Tim Chevalier 2012-06-25 13:41:49 -07:00
commit 6517fc5ab6
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,18 @@
class c1<T: copy> {
let x: T;
new(x: T) {self.x = x;}
fn f1(x: int) {
}
}
impl i1<T: copy> for c1<T> {
fn f2(x: int) {
}
}
fn main() {
c1::<int>(3).f1(4);
c1::<int>(3).f2(4);
}

View File

@ -0,0 +1,18 @@
import dvec::dvec;
class c1<T: copy> {
let x: T;
new(x: T) {self.x = x;}
fn f1(x: T) {}
}
impl i1<T: copy> for c1<T> {
fn f2(x: T) {}
}
fn main() {
c1::<int>(3).f1(4);
c1::<int>(3).f2(4);
}