DEBSOURCES
Skip Quicknav
sources / rust-peg / 0.8.5-1 / tests / compile-fail / rust_action_syntax_error.rs
1234567
extern crate peg; peg::parser!(grammar foo() for str { rule foo() = { + } //~ ERROR expected expression, found `+` }); fn main() {}