Lifetime annotation not needed.

This commit is contained in:
chriseth
2023-06-26 19:34:06 +02:00
parent db0f02650a
commit 8241e670d5

View File

@@ -978,9 +978,9 @@ mod test {
use crate::compile;
fn parse_and_analyse<'a, T: FieldElement>(
fn parse_and_analyse<T: FieldElement>(
file_name: Option<&str>,
input: &'a str,
input: &str,
) -> AnalysisASMFile<T> {
analyze(parse_asm(file_name, input).unwrap()).unwrap()
}