nvim-treesitter/tests/indent/rust/string.rs

13 lines
130 B
Rust
Raw Permalink Normal View History

2021-04-18 22:38:25 +02:00
fn foo() {
let a = "hello
world";
let b = "hello\
world";
let c = r#"
hello
world
"#;
}