silence some warnings that were driving me crazy

This commit is contained in:
Niko Matsakis 2017-03-30 05:03:47 -06:00
parent 243e9983cf
commit 4ebd265f86
2 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,3 @@
use lalrpop_util::ParseError;
use generics_issue_104_lib::Generator;
grammar<T> where T: Generator;

View File

@ -13,6 +13,7 @@ pub enum Tok {
Times,
Div,
Comma,
#[allow(dead_code)]
Fraction(i32, i32), // Not produced by tokenizer, used only in regression tests for #179
}