1
Fork 0

test: Remove pure from the test suite

This commit is contained in:
Patrick Walton 2013-03-22 11:23:21 -07:00
parent fbe22afdbe
commit 3eda11a4f7
62 changed files with 153 additions and 158 deletions

View file

@ -18,7 +18,7 @@ fn f<T:Copy + MyNum>(x: T, y: T) -> (T, T, T) {
return (x + y, x - y, x * y);
}
pure fn mi(v: int) -> MyInt { MyInt { val: v } }
fn mi(v: int) -> MyInt { MyInt { val: v } }
pub fn main() {
let (x, y) = (mi(3), mi(5));