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 3cd111b commit f78cd04Copy full SHA for f78cd04
tests/core/tests.rs
@@ -127,6 +127,18 @@ mod tests {
127
deser_test(&max);
128
}
129
130
+ #[test]
131
+ fn paren_types() {
132
+ {
133
+ let _: ParenSize = 5u8;
134
+ }
135
136
+ let cbor = ParenCbor::new("foo".to_string());
137
+ // TODO: fix this assert by inputting the right value
138
+ assert_eq!(cbor.to_bytes(), vec![]);
139
140
141
+
142
#[test]
143
fn toplevel_types() {
144
{
0 commit comments