rust-clippy/tests/ui/declare_interior_mutable_const/traits.stderr

77 lines
3.1 KiB
Text
Raw Normal View History

2020-01-27 03:14:11 +00:00
error: a `const` item should never be interior mutable
--> tests/ui/declare_interior_mutable_const/traits.rs:16:5
2020-01-27 03:14:11 +00:00
|
LL | const ATOMIC: AtomicUsize;
2020-01-27 03:14:11 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::declare-interior-mutable-const` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::declare_interior_mutable_const)]`
2020-01-27 03:14:11 +00:00
error: a `const` item should never be interior mutable
2024-02-17 12:16:29 +00:00
--> tests/ui/declare_interior_mutable_const/traits.rs:9:9
|
LL | const $name: $ty = $e;
| ^^^^^^^^^^^^^^^^^^^^^^
...
LL | declare_const!(ANOTHER_ATOMIC: AtomicUsize = Self::ATOMIC);
| ---------------------------------------------------------- in this macro invocation
2020-01-27 03:14:11 +00:00
|
= note: this error originates in the macro `declare_const` (in Nightly builds, run with -Z macro-backtrace for more info)
2020-01-27 03:14:11 +00:00
error: a `const` item should never be interior mutable
--> tests/ui/declare_interior_mutable_const/traits.rs:44:5
2020-01-27 03:14:11 +00:00
|
LL | const TO_BE_CONCRETE: AtomicUsize = AtomicUsize::new(11);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-27 03:14:11 +00:00
error: a `const` item should never be interior mutable
--> tests/ui/declare_interior_mutable_const/traits.rs:69:5
2020-01-27 03:14:11 +00:00
|
LL | const TO_BE_UNFROZEN: Self::ToBeUnfrozen = AtomicUsize::new(13);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-27 03:14:11 +00:00
error: a `const` item should never be interior mutable
--> tests/ui/declare_interior_mutable_const/traits.rs:70:5
2020-01-27 03:14:11 +00:00
|
LL | const WRAPPED_TO_BE_UNFROZEN: Wrapper<Self::ToBeUnfrozen> = Wrapper(AtomicUsize::new(14));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: a `const` item should never be interior mutable
--> tests/ui/declare_interior_mutable_const/traits.rs:89:5
|
LL | const BOUNDED: T::ToBeBounded;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: a `const` item should never be interior mutable
--> tests/ui/declare_interior_mutable_const/traits.rs:117:5
|
LL | const SELF: Self = AtomicUsize::new(17);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-27 03:14:11 +00:00
error: a `const` item should never be interior mutable
--> tests/ui/declare_interior_mutable_const/traits.rs:118:5
2020-01-27 03:14:11 +00:00
|
LL | const WRAPPED_SELF: Option<Self> = Some(AtomicUsize::new(21));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-27 03:14:11 +00:00
error: a `const` item should never be interior mutable
--> tests/ui/declare_interior_mutable_const/traits.rs:126:5
2020-01-27 03:14:11 +00:00
|
LL | const INDIRECT: Cell<*const T>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-27 03:14:11 +00:00
error: a `const` item should never be interior mutable
--> tests/ui/declare_interior_mutable_const/traits.rs:142:5
2020-01-27 03:14:11 +00:00
|
LL | const ATOMIC: AtomicUsize = AtomicUsize::new(18);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-27 03:14:11 +00:00
error: a `const` item should never be interior mutable
--> tests/ui/declare_interior_mutable_const/traits.rs:148:5
2020-01-27 03:14:11 +00:00
|
LL | const BOUNDED_ASSOC_TYPE: T::ToBeBounded = AtomicUsize::new(19);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-27 03:14:11 +00:00
error: aborting due to 11 previous errors
2020-01-27 03:14:11 +00:00