nvim-treesitter/lua/tests/indent/rust/string.rs
2021-04-23 21:21:38 +02:00

12 lines
130 B
Rust

fn foo() {
let a = "hello
world";
let b = "hello\
world";
let c = r#"
hello
world
"#;
}