rust/tests/ui/borrow_interior_mutable_const/traits.stderr

128 lines
4.2 KiB
Plaintext
Raw Normal View History

2020-01-26 21:14:11 -06:00
error: a `const` item with interior mutability should not be borrowed
--> $DIR/traits.rs:15:18
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::ATOMIC;
| ^^^^^^^^^^^^
|
= help: assign this const to a local or static variable, and use the variable here
2023-04-20 10:19:36 -05:00
note: the lint level is defined here
--> $DIR/traits.rs:1:9
|
LL | #![deny(clippy::borrow_interior_mutable_const)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: a `const` item with interior mutability should not be borrowed
--> $DIR/traits.rs:26:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::ATOMIC;
| ^^^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:51:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::TO_BE_CONCRETE;
| ^^^^^^^^^^^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:86:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::TO_BE_UNFROZEN;
| ^^^^^^^^^^^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:87:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::WRAPPED_TO_BE_UNFROZEN;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:109:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::BOUNDED;
| ^^^^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:122:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::BOUNDED;
| ^^^^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:151:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::SELF;
| ^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:152:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::WRAPPED_SELF;
| ^^^^^^^^^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:162:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::INDIRECT;
| ^^^^^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:172:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::INDIRECT;
| ^^^^^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:191:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::ATOMIC;
| ^^^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:195:18
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | let _ = &Self::BOUNDED_ASSOC_TYPE;
| ^^^^^^^^^^^^^^^^^^^^^^^^
2020-01-26 21:14:11 -06:00
|
= 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
--> $DIR/traits.rs:200:5
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | u64::ATOMIC.store(5, Ordering::SeqCst);
2020-01-26 21:14:11 -06:00
| ^^^^^^^^^^^
|
= 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
--> $DIR/traits.rs:201:16
2020-01-26 21:14:11 -06:00
|
2023-04-20 10:19:36 -05:00
LL | assert_eq!(u64::ATOMIC.load(Ordering::SeqCst), 9);
2020-01-26 21:14:11 -06:00
| ^^^^^^^^^^^
|
= help: assign this const to a local or static variable, and use the variable here
error: aborting due to 15 previous errors
2020-01-26 21:14:11 -06:00