|
| 1 | +warning: calls to `str::from_utf8_unchecked_mut` with a invalid literal are undefined behavior |
| 2 | + --> $DIR/invalid_from_utf8.rs:36:9 |
| 3 | + | |
| 4 | +LL | call!(from_utf8_unchecked_mut)(&mut [99, 108, 130, 105, 112, 112, 121]); |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------------^ |
| 6 | + | | |
| 7 | + | the literal was valid UTF-8 up to the 2 bytes |
| 8 | + | |
| 9 | +note: the lint level is defined here |
| 10 | + --> $DIR/invalid_from_utf8.rs:7:9 |
| 11 | + | |
| 12 | +LL | #![warn(invalid_from_utf8_unchecked)] |
| 13 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 14 | + |
| 15 | +warning: calls to `str::from_utf8_unchecked_mut` with a invalid literal are undefined behavior |
| 16 | + --> $DIR/invalid_from_utf8.rs:38:9 |
| 17 | + | |
| 18 | +LL | call!(from_utf8_unchecked_mut)(&mut [b'c', b'l', b'\x82', b'i', b'p', b'p', b'y']); |
| 19 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^---------------------------------------------^ |
| 20 | + | | |
| 21 | + | the literal was valid UTF-8 up to the 2 bytes |
| 22 | + |
| 23 | +warning: calls to `str::from_utf8_unchecked` with a invalid literal are undefined behavior |
| 24 | + --> $DIR/invalid_from_utf8.rs:56:9 |
| 25 | + | |
| 26 | +LL | call!(from_utf8_unchecked)(&[99, 108, 130, 105, 112, 112, 121]); |
| 27 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------------^ |
| 28 | + | | |
| 29 | + | the literal was valid UTF-8 up to the 2 bytes |
| 30 | + |
| 31 | +warning: calls to `str::from_utf8_unchecked` with a invalid literal are undefined behavior |
| 32 | + --> $DIR/invalid_from_utf8.rs:58:9 |
| 33 | + | |
| 34 | +LL | call!(from_utf8_unchecked)(&[b'c', b'l', b'\x82', b'i', b'p', b'p', b'y']); |
| 35 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^---------------------------------------------^ |
| 36 | + | | |
| 37 | + | the literal was valid UTF-8 up to the 2 bytes |
| 38 | + |
| 39 | +warning: calls to `str::from_utf8_unchecked` with a invalid literal are undefined behavior |
| 40 | + --> $DIR/invalid_from_utf8.rs:60:9 |
| 41 | + | |
| 42 | +LL | call!(from_utf8_unchecked)(b"cl\x82ippy"); |
| 43 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^-------------^ |
| 44 | + | | |
| 45 | + | the literal was valid UTF-8 up to the 2 bytes |
| 46 | + |
| 47 | +warning: calls to `str::from_utf8_unchecked` with a invalid literal are undefined behavior |
| 48 | + --> $DIR/invalid_from_utf8.rs:62:9 |
| 49 | + | |
| 50 | +LL | call!(from_utf8_unchecked)(concat_bytes!(b"cl", b"\x82ippy")); |
| 51 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^---------------------------------^ |
| 52 | + | | |
| 53 | + | the literal was valid UTF-8 up to the 2 bytes |
| 54 | + |
| 55 | +warning: calls to `str::from_utf8_mut` with a invalid literal always return an error |
| 56 | + --> $DIR/invalid_from_utf8.rs:79:9 |
| 57 | + | |
| 58 | +LL | call!(from_utf8_mut)(&mut [99, 108, 130, 105, 112, 112, 121]); |
| 59 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^----------------------------------^ |
| 60 | + | | |
| 61 | + | the literal was valid UTF-8 up to the 2 bytes |
| 62 | + | |
| 63 | +note: the lint level is defined here |
| 64 | + --> $DIR/invalid_from_utf8.rs:8:9 |
| 65 | + | |
| 66 | +LL | #![warn(invalid_from_utf8)] |
| 67 | + | ^^^^^^^^^^^^^^^^^ |
| 68 | + |
| 69 | +warning: calls to `str::from_utf8_mut` with a invalid literal always return an error |
| 70 | + --> $DIR/invalid_from_utf8.rs:81:9 |
| 71 | + | |
| 72 | +LL | call!(from_utf8_mut)(&mut [b'c', b'l', b'\x82', b'i', b'p', b'p', b'y']); |
| 73 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^---------------------------------------------^ |
| 74 | + | | |
| 75 | + | the literal was valid UTF-8 up to the 2 bytes |
| 76 | + |
| 77 | +warning: calls to `str::from_utf8` with a invalid literal always return an error |
| 78 | + --> $DIR/invalid_from_utf8.rs:99:9 |
| 79 | + | |
| 80 | +LL | call!(from_utf8)(&[99, 108, 130, 105, 112, 112, 121]); |
| 81 | + | ^^^^^^^^^^^^^^^^^^----------------------------------^ |
| 82 | + | | |
| 83 | + | the literal was valid UTF-8 up to the 2 bytes |
| 84 | + |
| 85 | +warning: calls to `str::from_utf8` with a invalid literal always return an error |
| 86 | + --> $DIR/invalid_from_utf8.rs:101:9 |
| 87 | + | |
| 88 | +LL | call!(from_utf8)(&[b'c', b'l', b'\x82', b'i', b'p', b'p', b'y']); |
| 89 | + | ^^^^^^^^^^^^^^^^^^---------------------------------------------^ |
| 90 | + | | |
| 91 | + | the literal was valid UTF-8 up to the 2 bytes |
| 92 | + |
| 93 | +warning: calls to `str::from_utf8` with a invalid literal always return an error |
| 94 | + --> $DIR/invalid_from_utf8.rs:103:9 |
| 95 | + | |
| 96 | +LL | call!(from_utf8)(b"cl\x82ippy"); |
| 97 | + | ^^^^^^^^^^^^^^^^^-------------^ |
| 98 | + | | |
| 99 | + | the literal was valid UTF-8 up to the 2 bytes |
| 100 | + |
| 101 | +warning: calls to `str::from_utf8` with a invalid literal always return an error |
| 102 | + --> $DIR/invalid_from_utf8.rs:105:9 |
| 103 | + | |
| 104 | +LL | call!(from_utf8)(concat_bytes!(b"cl", b"\x82ippy")); |
| 105 | + | ^^^^^^^^^^^^^^^^^---------------------------------^ |
| 106 | + | | |
| 107 | + | the literal was valid UTF-8 up to the 2 bytes |
| 108 | + |
| 109 | +warning: calls to `str::from_utf8_mut` with a invalid literal always return an error |
| 110 | + --> $DIR/invalid_from_utf8.rs:112:5 |
| 111 | + | |
| 112 | +LL | let mut a = [99, 108, 130, 105, 112, 112, 121]; |
| 113 | + | ---------------------------------- the literal was valid UTF-8 up to the 2 bytes |
| 114 | +LL | call!(from_utf8_mut)(&mut a); |
| 115 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 116 | + |
| 117 | +warning: calls to `str::from_utf8_mut` with a invalid literal always return an error |
| 118 | + --> $DIR/invalid_from_utf8.rs:116:5 |
| 119 | + | |
| 120 | +LL | let mut a = [99, 108, 130, 105, 112, 112, 121]; |
| 121 | + | ---------------------------------- the literal was valid UTF-8 up to the 2 bytes |
| 122 | +... |
| 123 | +LL | call!(from_utf8_mut)(c); |
| 124 | + | ^^^^^^^^^^^^^^^^^^^^^^^ |
| 125 | + |
| 126 | +warning: calls to `str::from_utf8` with a invalid literal always return an error |
| 127 | + --> $DIR/invalid_from_utf8.rs:119:5 |
| 128 | + | |
| 129 | +LL | let mut c = &[99, 108, 130, 105, 112, 112, 121]; |
| 130 | + | ---------------------------------- the literal was valid UTF-8 up to the 2 bytes |
| 131 | +LL | call!(from_utf8)(c); |
| 132 | + | ^^^^^^^^^^^^^^^^^^^ |
| 133 | + |
| 134 | +warning: calls to `str::from_utf8` with a invalid literal always return an error |
| 135 | + --> $DIR/invalid_from_utf8.rs:122:5 |
| 136 | + | |
| 137 | +LL | const INVALID_1: [u8; 7] = [99, 108, 130, 105, 112, 112, 121]; |
| 138 | + | ---------------------------------- the literal was valid UTF-8 up to the 2 bytes |
| 139 | +LL | call!(from_utf8)(&INVALID_1); |
| 140 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 141 | + |
| 142 | +warning: calls to `str::from_utf8` with a invalid literal always return an error |
| 143 | + --> $DIR/invalid_from_utf8.rs:125:5 |
| 144 | + | |
| 145 | +LL | static INVALID_2: [u8; 7] = [99, 108, 130, 105, 112, 112, 121]; |
| 146 | + | ---------------------------------- the literal was valid UTF-8 up to the 2 bytes |
| 147 | +LL | call!(from_utf8)(&INVALID_2); |
| 148 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 149 | + |
| 150 | +warning: calls to `str::from_utf8` with a invalid literal always return an error |
| 151 | + --> $DIR/invalid_from_utf8.rs:128:5 |
| 152 | + | |
| 153 | +LL | const INVALID_3: &'static [u8; 7] = &[99, 108, 130, 105, 112, 112, 121]; |
| 154 | + | ---------------------------------- the literal was valid UTF-8 up to the 2 bytes |
| 155 | +LL | call!(from_utf8)(INVALID_3); |
| 156 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 157 | + |
| 158 | +warning: calls to `str::from_utf8` with a invalid literal always return an error |
| 159 | + --> $DIR/invalid_from_utf8.rs:131:5 |
| 160 | + | |
| 161 | +LL | const INVALID_4: &'static [u8; 7] = { &[99, 108, 130, 105, 112, 112, 121] }; |
| 162 | + | ---------------------------------- the literal was valid UTF-8 up to the 2 bytes |
| 163 | +LL | call!(from_utf8)(INVALID_4); |
| 164 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 165 | + |
| 166 | +warning: 19 warnings emitted |
| 167 | + |
0 commit comments