summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/test_attr_in_doctest.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/test_attr_in_doctest.stderr')
-rw-r--r--src/tools/clippy/tests/ui/test_attr_in_doctest.stderr29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/test_attr_in_doctest.stderr b/src/tools/clippy/tests/ui/test_attr_in_doctest.stderr
new file mode 100644
index 000000000..605259f3b
--- /dev/null
+++ b/src/tools/clippy/tests/ui/test_attr_in_doctest.stderr
@@ -0,0 +1,29 @@
+error: unit tests in doctest are not executed
+ --> $DIR/test_attr_in_doctest.rs:6:5
+ |
+LL | /// #[test]
+ | _____^
+LL | | /// fn should_be_linted() {
+ | |_______________________^
+ |
+ = note: `-D clippy::test-attr-in-doctest` implied by `-D warnings`
+ = help: to override `-D warnings` add `#[allow(clippy::test_attr_in_doctest)]`
+
+error: unit tests in doctest are not executed
+ --> $DIR/test_attr_in_doctest.rs:16:5
+ |
+LL | /// #[test]
+ | _____^
+LL | | /// fn should_also_be_linted() {
+ | |____________________________^
+
+error: unit tests in doctest are not executed
+ --> $DIR/test_attr_in_doctest.rs:22:5
+ |
+LL | /// #[test]
+ | _____^
+LL | | /// fn should_be_linted_too() {
+ | |___________________________^
+
+error: aborting due to 3 previous errors
+