1
Fork 0

Remove libdebug and update tests.

This commit is contained in:
Luqman Aden 2014-10-14 21:07:11 -04:00
parent b6e0d3a5bf
commit 38aca17c47
134 changed files with 236 additions and 1716 deletions

View file

@ -8,11 +8,10 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
extern crate debug;
#[deriving(Show)]
struct Foo(int, int);
pub fn main() {
let x = Foo(1, 2);
println!("{:?}", x);
println!("{}", x);
}