summaryrefslogtreecommitdiff
path: root/src/parse/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/tests.rs')
-rw-r--r--src/parse/tests.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parse/tests.rs b/src/parse/tests.rs
index 108b4b29..644b7f16 100644
--- a/src/parse/tests.rs
+++ b/src/parse/tests.rs
@@ -89,6 +89,7 @@ macro_rules! Call {
}};
($($tts:tt)*) => { Expr::Call(Call![@$($tts)*]) };
}
+
fn Unary(op: impl Into<Spanned<UnOp>>, expr: impl Into<Spanned<Expr>>) -> Expr {
Expr::Unary(ExprUnary {
op: op.into(),