diff --git a/tests/target/configs-error_on_line_overflow_strings-false.rs b/tests/target/configs-error_on_line_overflow_strings-false.rs new file mode 100644 index 00000000000..b5922745cf2 --- /dev/null +++ b/tests/target/configs-error_on_line_overflow_strings-false.rs @@ -0,0 +1,9 @@ +// rustfmt-error_on_line_overflow_strings: false +// Suppress an error on line overflow strings. + +fn main() { + let x = " "; + let a = " + +"; +}