Delete unused main() function

The new dead_code lint warns on this.
This commit is contained in:
Kevin Ballard 2013-12-08 23:45:52 -08:00
parent ee4d0b4d2b
commit c9793a907f
1 changed files with 0 additions and 8 deletions

View File

@ -85,11 +85,3 @@ impl HMAC {
} }
} }
} }
fn main() {
let mut h = HMAC(SHA512, ~[00u8]);
h.update([00u8]);
println!("{:?}", h.final())
}