We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
run-make/allow-non-lint-warnings-cmdline
rmake.rs
1 parent 9da67a2 commit 115fa2eCopy full SHA for 115fa2e
src/tools/tidy/src/allowed_run_make_makefiles.txt
@@ -1,5 +1,4 @@
1
run-make/allocator-shim-circular-deps/Makefile
2
-run-make/allow-non-lint-warnings-cmdline/Makefile
3
run-make/archive-duplicate-names/Makefile
4
run-make/atomic-lock-free/Makefile
5
run-make/branch-protection-check-IBT/Makefile
tests/run-make/allow-non-lint-warnings-cmdline/Makefile
tests/run-make/allow-non-lint-warnings-cmdline/rmake.rs
@@ -0,0 +1,8 @@
+// Test that -A warnings makes the 'empty trait list for derive' warning go away.
+
+use run_make_support::rustc;
+fn main() {
6
+ let output = rustc().input("foo.rs").arg("-Awarnings").run();
7
+ output.assert_stderr_not_contains("warning");
8
+}
0 commit comments