Register snapshots and switch logging over to use of log_full or #error / #debug.

This commit is contained in:
Graydon Hoare
2011-12-22 14:42:52 -08:00
parent 3b61064631
commit 8b580954fe
326 changed files with 1347 additions and 1144 deletions

View File

@@ -3,5 +3,12 @@ fn main() {
let y: int = 42;
let x: int;
while true { log y; while true { while true { while true { x <- y; } } } }
while true {
log_full(core::debug, y);
while true {
while true {
while true { x <- y; }
}
}
}
}