We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e49866a commit dc32d58Copy full SHA for dc32d58
miri-script/src/util.rs
@@ -73,7 +73,9 @@ impl MiriEnv {
73
flags.push("-C link-args=-Wl,-rpath,");
74
flags.push(libdir);
75
// Enable rustc-specific lints (ignored without `-Zunstable-options`).
76
- flags.push(" -Zunstable-options -Wrustc::internal -Wrust_2018_idioms -Wunused_lifetimes");
+ flags.push(
77
+ " -Zunstable-options -Wrustc::internal -Wrust_2018_idioms -Wunused_lifetimes",
78
+ );
79
// Add user-defined flags.
80
if let Some(value) = std::env::var_os("RUSTFLAGS") {
81
flags.push(" ");
0 commit comments