osdb/src/snapshots/osdb__tokens__tests__string_errors.snap

24 lines
554 B
Text
Raw Normal View History

---
source: src/tokens.rs
expression: "tokenize(r#\"INSERT \"unclosed string\"#.to_string(), \"<input>\".to_string())"
---
Err(
[
ScanError {
location: Location {
file: "<input>",
offset: 23,
length: 0,
},
kind: UnexpectedEndOfInputWhileLookingForMatching(
'"',
Location {
file: "<input>",
offset: 7,
length: 1,
},
),
},
],
)