|
| 1 | +error: a `const` item with interior mutability should not be borrowed |
| 2 | + --> $DIR/borrow_interior_mutable_const.rs:34:5 |
| 3 | + | |
| 4 | +LL | ATOMIC.store(1, Ordering::SeqCst); //~ ERROR interior mutability |
| 5 | + | ^^^^^^ |
| 6 | + | |
| 7 | + = note: `-D clippy::borrow-interior-mutable-const` implied by `-D warnings` |
| 8 | + = help: assign this const to a local or static variable, and use the variable here |
| 9 | + |
| 10 | +error: a `const` item with interior mutability should not be borrowed |
| 11 | + --> $DIR/borrow_interior_mutable_const.rs:35:16 |
| 12 | + | |
| 13 | +LL | assert_eq!(ATOMIC.load(Ordering::SeqCst), 5); //~ ERROR interior mutability |
| 14 | + | ^^^^^^ |
| 15 | + | |
| 16 | + = help: assign this const to a local or static variable, and use the variable here |
| 17 | + |
| 18 | +error: a `const` item with interior mutability should not be borrowed |
| 19 | + --> $DIR/borrow_interior_mutable_const.rs:38:22 |
| 20 | + | |
| 21 | +LL | let _once_ref = &ONCE_INIT; //~ ERROR interior mutability |
| 22 | + | ^^^^^^^^^ |
| 23 | + | |
| 24 | + = help: assign this const to a local or static variable, and use the variable here |
| 25 | + |
| 26 | +error: a `const` item with interior mutability should not be borrowed |
| 27 | + --> $DIR/borrow_interior_mutable_const.rs:39:25 |
| 28 | + | |
| 29 | +LL | let _once_ref_2 = &&ONCE_INIT; //~ ERROR interior mutability |
| 30 | + | ^^^^^^^^^ |
| 31 | + | |
| 32 | + = help: assign this const to a local or static variable, and use the variable here |
| 33 | + |
| 34 | +error: a `const` item with interior mutability should not be borrowed |
| 35 | + --> $DIR/borrow_interior_mutable_const.rs:40:27 |
| 36 | + | |
| 37 | +LL | let _once_ref_4 = &&&&ONCE_INIT; //~ ERROR interior mutability |
| 38 | + | ^^^^^^^^^ |
| 39 | + | |
| 40 | + = help: assign this const to a local or static variable, and use the variable here |
| 41 | + |
| 42 | +error: a `const` item with interior mutability should not be borrowed |
| 43 | + --> $DIR/borrow_interior_mutable_const.rs:41:26 |
| 44 | + | |
| 45 | +LL | let _once_mut = &mut ONCE_INIT; //~ ERROR interior mutability |
| 46 | + | ^^^^^^^^^ |
| 47 | + | |
| 48 | + = help: assign this const to a local or static variable, and use the variable here |
| 49 | + |
| 50 | +error: a `const` item with interior mutability should not be borrowed |
| 51 | + --> $DIR/borrow_interior_mutable_const.rs:52:14 |
| 52 | + | |
| 53 | +LL | let _ = &ATOMIC_TUPLE; //~ ERROR interior mutability |
| 54 | + | ^^^^^^^^^^^^ |
| 55 | + | |
| 56 | + = help: assign this const to a local or static variable, and use the variable here |
| 57 | + |
| 58 | +error: a `const` item with interior mutability should not be borrowed |
| 59 | + --> $DIR/borrow_interior_mutable_const.rs:53:14 |
| 60 | + | |
| 61 | +LL | let _ = &ATOMIC_TUPLE.0; //~ ERROR interior mutability |
| 62 | + | ^^^^^^^^^^^^ |
| 63 | + | |
| 64 | + = help: assign this const to a local or static variable, and use the variable here |
| 65 | + |
| 66 | +error: a `const` item with interior mutability should not be borrowed |
| 67 | + --> $DIR/borrow_interior_mutable_const.rs:54:19 |
| 68 | + | |
| 69 | +LL | let _ = &(&&&&ATOMIC_TUPLE).0; //~ ERROR interior mutability |
| 70 | + | ^^^^^^^^^^^^ |
| 71 | + | |
| 72 | + = help: assign this const to a local or static variable, and use the variable here |
| 73 | + |
| 74 | +error: a `const` item with interior mutability should not be borrowed |
| 75 | + --> $DIR/borrow_interior_mutable_const.rs:55:14 |
| 76 | + | |
| 77 | +LL | let _ = &ATOMIC_TUPLE.0[0]; //~ ERROR interior mutability |
| 78 | + | ^^^^^^^^^^^^ |
| 79 | + | |
| 80 | + = help: assign this const to a local or static variable, and use the variable here |
| 81 | + |
| 82 | +error: a `const` item with interior mutability should not be borrowed |
| 83 | + --> $DIR/borrow_interior_mutable_const.rs:56:13 |
| 84 | + | |
| 85 | +LL | let _ = ATOMIC_TUPLE.0[0].load(Ordering::SeqCst); //~ ERROR interior mutability |
| 86 | + | ^^^^^^^^^^^^ |
| 87 | + | |
| 88 | + = help: assign this const to a local or static variable, and use the variable here |
| 89 | + |
| 90 | +error: a `const` item with interior mutability should not be borrowed |
| 91 | + --> $DIR/borrow_interior_mutable_const.rs:62:13 |
| 92 | + | |
| 93 | +LL | let _ = ATOMIC_TUPLE.0[0]; //~ ERROR interior mutability |
| 94 | + | ^^^^^^^^^^^^ |
| 95 | + | |
| 96 | + = help: assign this const to a local or static variable, and use the variable here |
| 97 | + |
| 98 | +error: a `const` item with interior mutability should not be borrowed |
| 99 | + --> $DIR/borrow_interior_mutable_const.rs:67:5 |
| 100 | + | |
| 101 | +LL | CELL.set(2); //~ ERROR interior mutability |
| 102 | + | ^^^^ |
| 103 | + | |
| 104 | + = help: assign this const to a local or static variable, and use the variable here |
| 105 | + |
| 106 | +error: a `const` item with interior mutability should not be borrowed |
| 107 | + --> $DIR/borrow_interior_mutable_const.rs:68:16 |
| 108 | + | |
| 109 | +LL | assert_eq!(CELL.get(), 6); //~ ERROR interior mutability |
| 110 | + | ^^^^ |
| 111 | + | |
| 112 | + = help: assign this const to a local or static variable, and use the variable here |
| 113 | + |
| 114 | +error: a `const` item with interior mutability should not be borrowed |
| 115 | + --> $DIR/borrow_interior_mutable_const.rs:81:5 |
| 116 | + | |
| 117 | +LL | u64::ATOMIC.store(5, Ordering::SeqCst); //~ ERROR interior mutability |
| 118 | + | ^^^^^^^^^^^ |
| 119 | + | |
| 120 | + = help: assign this const to a local or static variable, and use the variable here |
| 121 | + |
| 122 | +error: a `const` item with interior mutability should not be borrowed |
| 123 | + --> $DIR/borrow_interior_mutable_const.rs:82:16 |
| 124 | + | |
| 125 | +LL | assert_eq!(u64::ATOMIC.load(Ordering::SeqCst), 9); //~ ERROR interior mutability |
| 126 | + | ^^^^^^^^^^^ |
| 127 | + | |
| 128 | + = help: assign this const to a local or static variable, and use the variable here |
| 129 | + |
| 130 | +error: aborting due to 16 previous errors |
| 131 | + |
0 commit comments