diff options
| author | Philipp A | 2018-10-29 15:12:55 +0100 |
|---|---|---|
| committer | Philipp A | 2018-10-29 15:12:55 +0100 |
| commit | 07ada348558204e1736e29056eba6d73b2084cc2 (patch) | |
| tree | aaa102c1282572824dffb8fc0c873816177a1a83 /src/parser | |
| parent | 928da429a61fd98891f8b59fedb5f2de45dbc45d (diff) | |
| download | rust-rst-07ada348558204e1736e29056eba6d73b2084cc2.tar.bz2 | |
Rust 2018
Diffstat (limited to 'src/parser')
| -rw-r--r-- | src/parser/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/mod.rs b/src/parser/mod.rs index ab7e232..2ae47cb 100644 --- a/src/parser/mod.rs +++ b/src/parser/mod.rs @@ -4,13 +4,13 @@ pub mod token; use pest::consumes_to; #[allow(unused_imports)] use pest::parses_to; +use pest_derive::*; #[derive(Parser)] #[grammar = "rst.pest"] pub struct RstParser; - #[test] fn plain() { parses_to! { |
