We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3150be commit 270adf4Copy full SHA for 270adf4
src/binary/bitcode.rs
@@ -64,7 +64,7 @@ mod tests {
64
i: 42,
65
m: HashMap::from([("a".to_string(), 1), ("b".to_string(), 2)]),
66
b: BTreeMap::from([("a".to_string(), 1), ("b".to_string(), 2)]),
67
- a: Arc::new(String::from("party time 🎉"))
+ a: Arc::new(String::from("party time 🎉")),
68
};
69
let enc = BitcodeCodec::encode(&t).unwrap();
70
let dec: Test = BitcodeCodec::decode(&enc).unwrap();
0 commit comments