eww/src/snapshots/simplexpr__tests__test-20.snap
2021-07-16 14:19:54 +02:00

16 lines
219 B
Text

---
source: src/lib.rs
expression: "p.parse(Lexer::new(\"\\\"foo\\\" + 12.4\"))"
---
Ok(
BinOp(
Literal(
"foo",
),
Plus,
Literal(
"12.4",
),
),
)