osdb/src/snapshots/osdb__parser__tests__parse_multiple_mixed.snap

33 lines
746 B
Text
Raw Normal View History

---
source: src/parser.rs
expression: "parse(file.clone(), String::from(\".exit selct select nsert select\"))"
---
Err(
[
Scan(
ScanError {
location: Location {
file: "<stdin>",
offset: 6,
length: 5,
},
kind: UnknownKeyword(
"selct",
),
},
),
Scan(
ScanError {
location: Location {
file: "<stdin>",
offset: 19,
length: 5,
},
kind: UnknownKeyword(
"nsert",
),
},
),
],
)