osdb/src/snapshots/osdb__tokens__tests__string_errors-2.snap

23 lines
558 B
Text

---
source: src/tokens.rs
expression: "tokenize(r#\"SELECT \"valid\"; \"invalid\"#.to_string(), \"<input>\".to_string())"
---
Err(
[
ScanError {
location: Location {
file: "<input>",
offset: 24,
length: 0,
},
kind: UnexpectedEndOfInputWhileLookingForMatching(
'"',
Location {
file: "<input>",
offset: 16,
length: 1,
},
),
},
],
)