summaryrefslogtreecommitdiffstats
path: root/crates/rebel-parse/src/ast/expr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/rebel-parse/src/ast/expr.rs')
-rw-r--r--crates/rebel-parse/src/ast/expr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rebel-parse/src/ast/expr.rs b/crates/rebel-parse/src/ast/expr.rs
index 429dfa2..9ac4a38 100644
--- a/crates/rebel-parse/src/ast/expr.rs
+++ b/crates/rebel-parse/src/ast/expr.rs
@@ -163,7 +163,7 @@ impl<'a> From<&DestrPat<'a>> for Expr<'a> {
pub enum Literal<'a> {
Unit,
Bool(bool),
- Int(u64),
+ Int(i64),
Str {
pieces: Vec<StrPiece<'a>>,
kind: StrKind,