Niko Matsakis b639c9e88b Port lalrpop-test to use new Configuration value
Also, start emitting comments again, since they are helpful to ME.
2016-03-07 05:47:43 -05:00

10 lines
177 B
Rust

extern crate lalrpop;
fn main() {
lalrpop::Configuration::new()
.emit_comments(true)
.force_build(true)
.process_current_dir()
.unwrap();
}