rust/tests/target/format_strings/issue-687.rs

11 lines
283 B
Rust

// rustfmt-format_strings: true
fn foo() -> &'static str {
let sql = "ATTACH DATABASE ':memory:' AS my_attached;
BEGIN;
CREATE TABLE my_attached.foo(x INTEGER);
INSERT INTO my_attached.foo VALUES(42);
END;";
sql
}