Add a test for error_on_line_overflow_strings

This commit is contained in:
Seiichi Uchida 2017-12-09 20:21:34 +09:00
parent aec8cfa749
commit 6d78bd5fdc

View file

@ -0,0 +1,9 @@
// rustfmt-error_on_line_overflow_strings: false
// Suppress an error on line overflow strings.
fn main() {
let x = " ";
let a = "
";
}