mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-24 13:34:52 +00:00
8 lines
151 B
Rust
8 lines
151 B
Rust
use ruff_text_size::TextRange;
|
|
|
|
#[test]
|
|
fn main() {
|
|
let range = TextRange::default();
|
|
let _ = &""[range];
|
|
let _ = &String::new()[range];
|
|
}
|