()
| 240 | // ========================================================================= |
| 241 | |
| 242 | #[test] |
| 243 | fn expr_var_0() { |
| 244 | // Expr::Var(0) -> Tag4 { flag: 0x1, size: 0 } -> 0x10 |
| 245 | let mut buf = Vec::new(); |
| 246 | serialize::put_expr(&Expr::Var(0), &mut buf); |
| 247 | assert_eq!(buf, vec![0x10], "Expr::Var(0) should be 0x10"); |
| 248 | } |
| 249 | |
| 250 | #[test] |
nothing calls this directly
no test coverage detected