summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/lint-attr-everywhere-late.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:59:35 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:59:35 +0000
commitd1b2d29528b7794b41e66fc2136e395a02f8529b (patch)
treea4a17504b260206dec3cf55b2dca82929a348ac2 /tests/ui/lint/lint-attr-everywhere-late.stderr
parentReleasing progress-linux version 1.72.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-d1b2d29528b7794b41e66fc2136e395a02f8529b.tar.xz
rustc-d1b2d29528b7794b41e66fc2136e395a02f8529b.zip
Merging upstream version 1.73.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/lint/lint-attr-everywhere-late.stderr')
-rw-r--r--tests/ui/lint/lint-attr-everywhere-late.stderr104
1 files changed, 52 insertions, 52 deletions
diff --git a/tests/ui/lint/lint-attr-everywhere-late.stderr b/tests/ui/lint/lint-attr-everywhere-late.stderr
index 9587556b0..7fe078068 100644
--- a/tests/ui/lint/lint-attr-everywhere-late.stderr
+++ b/tests/ui/lint/lint-attr-everywhere-late.stderr
@@ -34,12 +34,6 @@ note: the lint level is defined here
LL | #![deny(missing_docs)]
| ^^^^^^^^^^^^
-error: missing documentation for a function
- --> $DIR/lint-attr-everywhere-late.rs:47:5
- |
-LL | pub fn missing_inner() {}
- | ^^^^^^^^^^^^^^^^^^^^^^
-
error: missing documentation for an associated function
--> $DIR/lint-attr-everywhere-late.rs:54:5
|
@@ -142,52 +136,6 @@ note: the lint level is defined here
LL | #[deny(missing_docs)]
| ^^^^^^^^^^^^
-error: missing documentation for a variant
- --> $DIR/lint-attr-everywhere-late.rs:112:5
- |
-LL | Variant1,
- | ^^^^^^^^
- |
-note: the lint level is defined here
- --> $DIR/lint-attr-everywhere-late.rs:111:12
- |
-LL | #[deny(missing_docs)]
- | ^^^^^^^^^^^^
-
-error: `clashing1` redeclared with a different signature
- --> $DIR/lint-attr-everywhere-late.rs:123:5
- |
-LL | fn clashing1();
- | --------------- `clashing1` previously declared here
-...
-LL | fn clashing1(_: i32);
- | ^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
- |
- = note: expected `unsafe extern "C" fn()`
- found `unsafe extern "C" fn(i32)`
-note: the lint level is defined here
- --> $DIR/lint-attr-everywhere-late.rs:122:13
- |
-LL | #![deny(clashing_extern_declarations)]
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: `clashing2` redeclared with a different signature
- --> $DIR/lint-attr-everywhere-late.rs:128:5
- |
-LL | fn clashing2();
- | --------------- `clashing2` previously declared here
-...
-LL | fn clashing2(_: i32);
- | ^^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
- |
- = note: expected `unsafe extern "C" fn()`
- found `unsafe extern "C" fn(i32)`
-note: the lint level is defined here
- --> $DIR/lint-attr-everywhere-late.rs:127:12
- |
-LL | #[deny(clashing_extern_declarations)]
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
error: types that do not implement `Drop` can still have drop glue, consider instead using `std::mem::needs_drop` to detect whether a type is trivially dropped
--> $DIR/lint-attr-everywhere-late.rs:93:38
|
@@ -230,6 +178,18 @@ note: the lint level is defined here
LL | #[deny(overflowing_literals)] const ASSOC_CONST: u8 = 1000;
| ^^^^^^^^^^^^^^^^^^^^
+error: missing documentation for a variant
+ --> $DIR/lint-attr-everywhere-late.rs:112:5
+ |
+LL | Variant1,
+ | ^^^^^^^^
+ |
+note: the lint level is defined here
+ --> $DIR/lint-attr-everywhere-late.rs:111:12
+ |
+LL | #[deny(missing_docs)]
+ | ^^^^^^^^^^^^
+
error: variable `PARAM` should have a snake case name
--> $DIR/lint-attr-everywhere-late.rs:131:37
|
@@ -436,5 +396,45 @@ note: the lint level is defined here
LL | TupleStruct(#[deny(enum_intrinsics_non_enums)] discriminant::<i32>(&123));
| ^^^^^^^^^^^^^^^^^^^^^^^^^
+error: missing documentation for a function
+ --> $DIR/lint-attr-everywhere-late.rs:47:5
+ |
+LL | pub fn missing_inner() {}
+ | ^^^^^^^^^^^^^^^^^^^^^^
+
+error: `clashing1` redeclared with a different signature
+ --> $DIR/lint-attr-everywhere-late.rs:123:5
+ |
+LL | fn clashing1();
+ | -------------- `clashing1` previously declared here
+...
+LL | fn clashing1(_: i32);
+ | ^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
+ |
+ = note: expected `unsafe extern "C" fn()`
+ found `unsafe extern "C" fn(i32)`
+note: the lint level is defined here
+ --> $DIR/lint-attr-everywhere-late.rs:122:13
+ |
+LL | #![deny(clashing_extern_declarations)]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: `clashing2` redeclared with a different signature
+ --> $DIR/lint-attr-everywhere-late.rs:128:5
+ |
+LL | fn clashing2();
+ | -------------- `clashing2` previously declared here
+...
+LL | fn clashing2(_: i32);
+ | ^^^^^^^^^^^^^^^^^^^^ this signature doesn't match the previous declaration
+ |
+ = note: expected `unsafe extern "C" fn()`
+ found `unsafe extern "C" fn(i32)`
+note: the lint level is defined here
+ --> $DIR/lint-attr-everywhere-late.rs:127:12
+ |
+LL | #[deny(clashing_extern_declarations)]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
error: aborting due to 32 previous errors