Format with rustfmt 2018-12-10

This commit is contained in:
David Tolnay
2018-12-31 22:04:56 -05:00
parent c22dd4ada5
commit c95ee3968a
+4 -2
View File
@@ -7,12 +7,14 @@ fn ui() {
let config = compiletest::Config { let config = compiletest::Config {
mode: compiletest::common::Mode::Ui, mode: compiletest::common::Mode::Ui,
src_base: std::path::PathBuf::from("tests/ui"), src_base: std::path::PathBuf::from("tests/ui"),
target_rustcflags: Some(String::from("\ target_rustcflags: Some(String::from(
"\
--edition=2018 \ --edition=2018 \
-L deps/target/debug/deps \ -L deps/target/debug/deps \
-Z unstable-options \ -Z unstable-options \
--extern serde_derive \ --extern serde_derive \
")), ",
)),
..Default::default() ..Default::default()
}; };