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

8 lines
149 B
Rust

use testparser::*;
fn main() {
let mut c = p_context_new(b"foo1\nbar2");
assert_eq!(P_SUCCESS, p_parse(&mut c));
p_context_delete(c);
}