]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/format_strings/issue-687.rs
Merge commit '4c41a222ca5d1325fb4b6709395bd06e766cc042' into clippyup
[rust.git] / src / tools / rustfmt / tests / target / format_strings / issue-687.rs
1 // rustfmt-format_strings: true
2
3 fn foo() -> &'static str {
4     let sql = "ATTACH DATABASE ':memory:' AS my_attached;
5                BEGIN;
6                CREATE TABLE my_attached.foo(x INTEGER);
7                INSERT INTO my_attached.foo VALUES(42);
8                END;";
9     sql
10 }