128 lines
4.8 KiB
Plaintext
128 lines
4.8 KiB
Plaintext
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:15:18
|
|
|
|
|
LL | let _ = &Self::ATOMIC;
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
note: the lint level is defined here
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:1:9
|
|
|
|
|
LL | #![deny(clippy::borrow_interior_mutable_const)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:26:18
|
|
|
|
|
LL | let _ = &Self::ATOMIC;
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:51:18
|
|
|
|
|
LL | let _ = &Self::TO_BE_CONCRETE;
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:86:18
|
|
|
|
|
LL | let _ = &Self::TO_BE_UNFROZEN;
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:87:18
|
|
|
|
|
LL | let _ = &Self::WRAPPED_TO_BE_UNFROZEN;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:109:18
|
|
|
|
|
LL | let _ = &Self::BOUNDED;
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:122:18
|
|
|
|
|
LL | let _ = &Self::BOUNDED;
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:151:18
|
|
|
|
|
LL | let _ = &Self::SELF;
|
|
| ^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:152:18
|
|
|
|
|
LL | let _ = &Self::WRAPPED_SELF;
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:162:18
|
|
|
|
|
LL | let _ = &Self::INDIRECT;
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:172:18
|
|
|
|
|
LL | let _ = &Self::INDIRECT;
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:191:18
|
|
|
|
|
LL | let _ = &Self::ATOMIC;
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:195:18
|
|
|
|
|
LL | let _ = &Self::BOUNDED_ASSOC_TYPE;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:200:5
|
|
|
|
|
LL | u64::ATOMIC.store(5, Ordering::SeqCst);
|
|
| ^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: a `const` item with interior mutability should not be borrowed
|
|
--> tests/ui/borrow_interior_mutable_const/traits.rs:201:16
|
|
|
|
|
LL | assert_eq!(u64::ATOMIC.load(Ordering::SeqCst), 9);
|
|
| ^^^^^^^^^^^
|
|
|
|
|
= help: assign this const to a local or static variable, and use the variable here
|
|
|
|
error: aborting due to 15 previous errors
|
|
|