test: Add a test for #1696

This commit is contained in:
Brian Anderson 2012-02-22 21:17:09 -08:00
parent ae23ee28e2
commit ffa77dd610
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
use std;
import std::map;
fn main() {
let m = map::new_bytes_hash();
m.insert(str::bytes("foo"), str::bytes("bar"));
log(error, m);
}