rustfmt-nightly 1.4.21

Tool to find and fix Rust formatting issues
1
2
3
4
5
6
7
8
9
10
// 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
}