propane/spec/test_drop_code_block.rs
2026-08-11 22:46:04 -04:00

8 lines
175 B
Rust

use testparser::*;
fn main() {
let mut c = p_context_new(b" # comment 1\n# comment 2\na\n");
assert_eq!(P_SUCCESS, p_parse(&mut c));
p_context_delete(c);
}