Updating only changed submodules Submodules updated in 0.01 seconds extracting /home/nick/development/rust/rust/build/cache/2020-10-16/rust-std-beta-x86_64-unknown-linux-gnu.tar.xz extracting /home/nick/development/rust/rust/build/cache/2020-10-16/rustc-beta-x86_64-unknown-linux-gnu.tar.xz extracting /home/nick/development/rust/rust/build/cache/2020-10-16/cargo-beta-x86_64-unknown-linux-gnu.tar.xz extracting /home/nick/development/rust/rust/build/cache/2020-11-19/rustfmt-nightly-x86_64-unknown-linux-gnu.tar.xz extracting /home/nick/development/rust/rust/build/cache/llvm-430feb24a46993e5073c1bb1b39da190d83fa2bf-False/rust-dev-nightly-x86_64-unknown-linux-gnu.tar.xz Finished dev [unoptimized + debuginfo] target(s) in 0.11s Checking std artifacts (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu) Compiling cc v1.0.60 Checking core v0.0.0 (/home/nick/development/rust/rust/library/core) Compiling libc v0.2.79 Compiling std v0.0.0 (/home/nick/development/rust/rust/library/std) Compiling compiler_builtins v0.1.36 Compiling unwind v0.0.0 (/home/nick/development/rust/rust/library/unwind) warning: this `if` has identical blocks --> library/unwind/build.rs:12:62 | 12 | } else if target.contains("x86_64-fortanix-unknown-sgx") { | ______________________________________________________________^ 13 | | llvm_libunwind::compile(); 14 | | } else if target.contains("linux") { | |_____^ | = note: `#[warn(clippy::if_same_then_else)]` on by default note: same as this --> library/unwind/build.rs:9:5 | 9 | / { 10 | | // Build the unwinding from libunwind C/C++ source code. 11 | | llvm_libunwind::compile(); 12 | | } else if target.contains("x86_64-fortanix-unknown-sgx") { | |_____^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#if_same_then_else warning: this `if` has identical blocks --> library/unwind/build.rs:33:42 | 33 | } else if target.contains("illumos") { | __________________________________________^ 34 | | println!("cargo:rustc-link-lib=gcc_s"); 35 | | } else if target.contains("dragonfly") { | |_____^ | note: same as this --> library/unwind/build.rs:31:42 | 31 | } else if target.contains("solaris") { | __________________________________________^ 32 | | println!("cargo:rustc-link-lib=gcc_s"); 33 | | } else if target.contains("illumos") { | |_____^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#if_same_then_else warning: this `if` has identical blocks --> library/unwind/build.rs:41:42 | 41 | } else if target.contains("fuchsia") { | __________________________________________^ 42 | | println!("cargo:rustc-link-lib=unwind"); 43 | | } else if target.contains("haiku") { | |_____^ | note: same as this --> library/unwind/build.rs:39:50 | 39 | } else if target.contains("uwp-windows-gnu") { | __________________________________________________^ 40 | | println!("cargo:rustc-link-lib=unwind"); 41 | | } else if target.contains("fuchsia") { | |_____^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#if_same_then_else warning: 3 warnings emitted warning: redundant field names in struct initialization --> library/core/src/num/bignum.rs:122:34 | 96 | / macro_rules! define_bignum { 97 | | ($name:ident: type=$ty:ty, n=$n:expr) => { 98 | | /// Stack-allocated arbitrary-precision (up to certain limit) integer. 99 | | /// ... | 122 | | $name { size: 1, base: base } | | ^^^^^^^^^^ help: replace it with: `base` ... | 461 | | }; 462 | | } | |_- in this expansion of `define_bignum!` ... 467 | define_bignum!(Big32x40: type=Digit32, n=40); | --------------------------------------------- in this macro invocation | = note: `#[warn(clippy::redundant_field_names)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names warning: redundant field names in struct initialization --> library/core/src/num/bignum.rs:134:35 | 96 | / macro_rules! define_bignum { 97 | | ($name:ident: type=$ty:ty, n=$n:expr) => { 98 | | /// Stack-allocated arbitrary-precision (up to certain limit) integer. 99 | | /// ... | 134 | | $name { size: sz, base: base } | | ^^^^^^^^^^ help: replace it with: `base` ... | 461 | | }; 462 | | } | |_- in this expansion of `define_bignum!` ... 467 | define_bignum!(Big32x40: type=Digit32, n=40); | --------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names warning: redundant field names in struct initialization --> library/core/src/num/bignum.rs:122:34 | 96 | / macro_rules! define_bignum { 97 | | ($name:ident: type=$ty:ty, n=$n:expr) => { 98 | | /// Stack-allocated arbitrary-precision (up to certain limit) integer. 99 | | /// ... | 122 | | $name { size: 1, base: base } | | ^^^^^^^^^^ help: replace it with: `base` ... | 461 | | }; 462 | | } | |_- in this expansion of `define_bignum!` ... 472 | define_bignum!(Big8x3: type=u8, n=3); | ------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names warning: redundant field names in struct initialization --> library/core/src/num/bignum.rs:134:35 | 96 | / macro_rules! define_bignum { 97 | | ($name:ident: type=$ty:ty, n=$n:expr) => { 98 | | /// Stack-allocated arbitrary-precision (up to certain limit) integer. 99 | | /// ... | 134 | | $name { size: sz, base: base } | | ^^^^^^^^^^ help: replace it with: `base` ... | 461 | | }; 462 | | } | |_- in this expansion of `define_bignum!` ... 472 | define_bignum!(Big8x3: type=u8, n=3); | ------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names warning: this `else { if .. }` block can be collapsed --> library/core/src/num/dec2flt/algorithm.rs:167:12 | 167 | } else { | ____________^ 168 | | if e >= 0 { 1 } else { 4 } 169 | | }; | |_____^ help: collapse nested if block: `if e >= 0 { 1 } else { 4 }` | = note: `#[warn(clippy::collapsible_if)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if warning: 7 bindings with single-character names in scope --> library/core/src/num/dec2flt/algorithm.rs:187:29 | 187 | fn algorithm_r(f: &Big, e: i16, z0: T) -> T { | ^ ^ 188 | let mut z = z0; | ^ ... 191 | let (m, k) = (raw.sig, raw.k); | ^ ^ 192 | let mut x = f.clone(); | ^ 193 | let mut y = Big::from_u64(m); | ^ | = note: `#[warn(clippy::many_single_char_names)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 7 bindings with single-character names in scope --> library/core/src/num/dec2flt/algorithm.rs:187:29 | 187 | fn algorithm_r(f: &Big, e: i16, z0: T) -> T { | ^ ^ 188 | let mut z = z0; | ^ ... 191 | let (m, k) = (raw.sig, raw.k); | ^ ^ 192 | let mut x = f.clone(); | ^ 193 | let mut y = Big::from_u64(m); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: this `else { if .. }` block can be collapsed --> library/core/src/num/dec2flt/algorithm.rs:263:12 | 263 | } else { | ____________^ 264 | | if k >= 0 { 265 | | // x = f, y = m * 10^abs(e) * 2^k 266 | | // This can't overflow either, see above. ... | 273 | | } 274 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if help: collapse nested if block | 263 | } else if k >= 0 { 264 | // x = f, y = m * 10^abs(e) * 2^k 265 | // This can't overflow either, see above. 266 | y.mul_pow5(e_abs).mul_pow2(k_abs + e_abs); 267 | } else { 268 | // x = f * 2^abs(k), y = m * 10^abs(e), again reducing by a common power of two. ... warning: 5 bindings with single-character names in scope --> library/core/src/num/dec2flt/algorithm.rs:294:33 | 294 | pub fn algorithm_m(f: &Big, e: i16) -> T { | ^ ^ 295 | let mut u; | ^ 296 | let mut v; | ^ 297 | let e_abs = e.abs() as usize; 298 | let mut k = 0; | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 6 bindings with single-character names in scope --> library/core/src/num/dec2flt/algorithm.rs:294:33 | 294 | pub fn algorithm_m(f: &Big, e: i16) -> T { | ^ ^ 295 | let mut u; | ^ 296 | let mut v; | ^ 297 | let e_abs = e.abs() as usize; 298 | let mut k = 0; | ^ ... 312 | let mut x = Big::from_small(0); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 8 bindings with single-character names in scope --> library/core/src/num/dec2flt/algorithm.rs:294:33 | 294 | pub fn algorithm_m(f: &Big, e: i16) -> T { | ^ ^ 295 | let mut u; | ^ 296 | let mut v; | ^ 297 | let e_abs = e.abs() as usize; 298 | let mut k = 0; | ^ ... 312 | let mut x = Big::from_small(0); | ^ ... 341 | let q = num::to_u64(&x); | ^ 342 | let z = rawfp::encode_normal(Unpacked::new(q, k)); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/num/dec2flt/algorithm.rs:385:27 | 385 | fn underflow(x: Big, v: Big, rem: Big) -> T { | ^ ^ ... 406 | let q = num::get_bits(&x, lsb, bits); | ^ 407 | let k = T::MIN_EXP_INT + lsb as i16; | ^ 408 | let z = rawfp::encode_normal(Unpacked::new(q, k)); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 6 bindings with single-character names in scope --> library/core/src/num/diy_float.rs:26:13 | 26 | let a = self.f >> 32; | ^ 27 | let b = self.f & MASK; | ^ 28 | let c = other.f >> 32; | ^ 29 | let d = other.f & MASK; | ^ ... 35 | let f = ac + (ad >> 32) + (bc >> 32) + (tmp >> 32); | ^ 36 | let e = self.e + other.e + 64; | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: this `else { if .. }` block can be collapsed --> library/core/src/num/flt2dec/strategy/grisu.rs:151:12 | 151 | } else { | ____________^ 152 | | if x < X6 { 153 | | if x < X5 { (4, X4) } else { (5, X5) } 154 | | } else if x < X8 { ... | 158 | | } 159 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if help: collapse nested if block | 151 | } else if x < X6 { 152 | if x < X5 { (4, X4) } else { (5, X5) } 153 | } else if x < X8 { 154 | if x < X7 { (6, X6) } else { (7, X7) } 155 | } else { 156 | if x < X9 { (8, X8) } else { (9, X9) } ... warning: this `else { if .. }` block can be collapsed --> library/core/src/num/flt2dec/strategy/grisu.rs:148:16 | 148 | } else { | ________________^ 149 | | if x < X3 { (2, X2) } else { (3, X3) } 150 | | } | |_________^ help: collapse nested if block: `if x < X3 { (2, X2) } else { (3, X3) }` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if warning: this `else { if .. }` block can be collapsed --> library/core/src/num/flt2dec/strategy/grisu.rs:156:16 | 156 | } else { | ________________^ 157 | | if x < X9 { (8, X8) } else { (9, X9) } 158 | | } | |_________^ help: collapse nested if block: `if x < X9 { (8, X8) } else { (9, X9) }` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if warning: 6 bindings with single-character names in scope --> library/core/src/num/flt2dec/strategy/grisu.rs:166:5 | 166 | d: &Decoded, | ^ ... 180 | let v = Fp { f: d.mant, e: d.exp }.normalize_to(plus.e); | ^ ... 228 | let e = -plus.e as usize; // shared exponent | ^ ... 240 | let mut i = 0; | ^ ... 267 | let q = remainder / ten_kappa; | ^ 268 | let r = remainder % ten_kappa; | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 6 bindings with single-character names in scope --> library/core/src/num/flt2dec/strategy/grisu.rs:166:5 | 166 | d: &Decoded, | ^ ... 180 | let v = Fp { f: d.mant, e: d.exp }.normalize_to(plus.e); | ^ ... 228 | let e = -plus.e as usize; // shared exponent | ^ ... 240 | let mut i = 0; | ^ ... 320 | let q = remainder >> e; | ^ 321 | let r = remainder & ((1 << e) - 1); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 6 bindings with single-character names in scope --> library/core/src/num/flt2dec/strategy/grisu.rs:476:5 | 476 | d: &Decoded, | ^ ... 485 | let v = Fp { f: d.mant, e: d.exp }.normalize(); | ^ ... 490 | let e = -v.e as usize; | ^ ... 511 | let mut i = 0; | ^ ... 551 | let q = remainder / ten_kappa; | ^ 552 | let r = remainder % ten_kappa; | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 6 bindings with single-character names in scope --> library/core/src/num/flt2dec/strategy/grisu.rs:476:5 | 476 | d: &Decoded, | ^ ... 485 | let v = Fp { f: d.mant, e: d.exp }.normalize(); | ^ ... 490 | let e = -v.e as usize; | ^ ... 511 | let mut i = 0; | ^ ... 605 | let q = remainder >> e; | ^ 606 | let r = remainder & ((1 << e) - 1); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: this `else { if .. }` block can be collapsed --> library/core/src/num/flt2dec/mod.rs:198:24 | 198 | } else { | ________________________^ 199 | | if v < 10_000 { 4 } else { 5 } 200 | | } | |_________________^ help: collapse nested if block: `if v < 10_000 { 4 } else { 5 }` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if warning: this `else { if .. }` block can be collapsed --> library/core/src/fmt/builders.rs:201:20 | 201 | } else { | ____________________^ 202 | | if self.has_fields { 203 | | self.fmt.write_str(", ..")?; 204 | | } else { 205 | | self.fmt.write_str(" { ..")?; 206 | | } 207 | | } | |_____________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if help: collapse nested if block | 201 | } else if self.has_fields { 202 | self.fmt.write_str(", ..")?; 203 | } else { 204 | self.fmt.write_str(" { ..")?; 205 | } | warning: digits of hex or binary literal not grouped by four --> library/core/src/slice/ascii.rs:64:34 | 64 | const NONASCII_MASK: usize = 0x80808080_80808080u64 as usize; | ^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x8080_8080_8080_8080_u64` | = note: `#[warn(clippy::unusual_byte_groupings)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/str/validations.rs:104:30 | 104 | const NONASCII_MASK: usize = 0x80808080_80808080u64 as usize; | ^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x8080_8080_8080_8080_u64` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:684:13 | 678 | / macro_rules! pattern_methods { 679 | | ($t:ty, $pmap:expr, $smap:expr) => { 680 | | type Searcher = $t; 681 | | ... | 684 | | ($smap)(($pmap)(self).into_searcher(haystack)) | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ... | 717 | | }; 718 | | } | |_- in this expansion of `pattern_methods!` ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = note: `#[warn(clippy::redundant_closure_call)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:684:21 | 678 | / macro_rules! pattern_methods { 679 | | ($t:ty, $pmap:expr, $smap:expr) => { 680 | | type Searcher = $t; 681 | | ... | 684 | | ($smap)(($pmap)(self).into_searcher(haystack)) | | ^^^^^^^^^^^^^ ... | 717 | | }; 718 | | } | |_- in this expansion of `pattern_methods!` ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:689:13 | 678 | / macro_rules! pattern_methods { 679 | | ($t:ty, $pmap:expr, $smap:expr) => { 680 | | type Searcher = $t; 681 | | ... | 689 | | ($pmap)(self).is_contained_in(haystack) | | ^^^^^^^^^^^^^ ... | 717 | | }; 718 | | } | |_- in this expansion of `pattern_methods!` ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:694:13 | 678 | / macro_rules! pattern_methods { 679 | | ($t:ty, $pmap:expr, $smap:expr) => { 680 | | type Searcher = $t; 681 | | ... | 694 | | ($pmap)(self).is_prefix_of(haystack) | | ^^^^^^^^^^^^^ ... | 717 | | }; 718 | | } | |_- in this expansion of `pattern_methods!` ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:699:13 | 678 | / macro_rules! pattern_methods { 679 | | ($t:ty, $pmap:expr, $smap:expr) => { 680 | | type Searcher = $t; 681 | | ... | 699 | | ($pmap)(self).strip_prefix_of(haystack) | | ^^^^^^^^^^^^^ ... | 717 | | }; 718 | | } | |_- in this expansion of `pattern_methods!` ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:707:13 | 678 | / macro_rules! pattern_methods { 679 | | ($t:ty, $pmap:expr, $smap:expr) => { 680 | | type Searcher = $t; 681 | | ... | 707 | | ($pmap)(self).is_suffix_of(haystack) | | ^^^^^^^^^^^^^ ... | 717 | | }; 718 | | } | |_- in this expansion of `pattern_methods!` ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:715:13 | 678 | / macro_rules! pattern_methods { 679 | | ($t:ty, $pmap:expr, $smap:expr) => { 680 | | type Searcher = $t; 681 | | ... | 715 | | ($pmap)(self).strip_suffix_of(haystack) | | ^^^^^^^^^^^^^ 716 | | } 717 | | }; 718 | | } | |_- in this expansion of `pattern_methods!` ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call warning: this `else { if .. }` block can be collapsed --> library/core/src/time.rs:508:20 | 508 | } else { | ____________________^ 509 | | if let Some(sub_secs) = secs.checked_sub(1) { 510 | | secs = sub_secs; 511 | | self.nanos + NANOS_PER_SEC - rhs.nanos ... | 514 | | } 515 | | }; | |_____________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if help: collapse nested if block | 508 | } else if let Some(sub_secs) = secs.checked_sub(1) { 509 | secs = sub_secs; 510 | self.nanos + NANOS_PER_SEC - rhs.nanos 511 | } else { 512 | return None; 513 | }; | warning: module has the same name as its containing module --> library/core/src/future/mod.rs:12:1 | 12 | mod future; | ^^^^^^^^^^^ | = note: `#[warn(clippy::module_inception)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#module_inception warning: using tabs in doc comments is not recommended --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx.rs:1798:5 | 1798 | /// `mem_addr` does not need to be aligned on any particular boundary. | ^^^^ help: consider using four spaces per tab | = note: `#[warn(clippy::tabs_in_doc_comments)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#tabs_in_doc_comments warning: 8 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx.rs:2406:5 | 2406 | a: f32, | ^ 2407 | b: f32, | ^ 2408 | c: f32, | ^ 2409 | d: f32, | ^ 2410 | e: f32, | ^ 2411 | f: f32, | ^ 2412 | g: f32, | ^ 2413 | h: f32, | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 8 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx.rs:2555:5 | 2555 | a: f32, | ^ 2556 | b: f32, | ^ 2557 | c: f32, | ^ 2558 | d: f32, | ^ 2559 | e: f32, | ^ 2560 | f: f32, | ^ 2561 | g: f32, | ^ 2562 | h: f32, | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:1844:9 | 1844 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:1912:9 | 1912 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:1984:9 | 1984 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:2254:9 | 2254 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:2371:5 | 2371 | a: __m512, | ^ 2372 | k: __mmask16, | ^ 2373 | b: __m512, | ^ 2374 | c: __m512i, | ^ ... 2389 | let r = constify_imm8_sae!(imm8, call); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:2401:5 | 2401 | k: __mmask16, | ^ 2402 | a: __m512, | ^ 2403 | b: __m512, | ^ 2404 | c: __m512i, | ^ ... 2419 | let r = constify_imm8_sae!(imm8, call); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:2455:5 | 2455 | a: __m512d, | ^ 2456 | k: __mmask8, | ^ 2457 | b: __m512d, | ^ 2458 | c: __m512i, | ^ ... 2473 | let r = constify_imm8_sae!(imm8, call); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:2485:5 | 2485 | k: __mmask8, | ^ 2486 | a: __m512d, | ^ 2487 | b: __m512d, | ^ 2488 | c: __m512i, | ^ ... 2503 | let r = constify_imm8_sae!(imm8, call); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5931:5 | 5931 | a: __m512, | ^ 5932 | k: __mmask16, | ^ 5933 | b: __m512, | ^ 5934 | c: __m512i, | ^ ... 5943 | let r = constify_imm8_roundscale!(imm8, sae, call); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5956:5 | 5956 | k: __mmask16, | ^ 5957 | a: __m512, | ^ 5958 | b: __m512, | ^ 5959 | c: __m512i, | ^ ... 5968 | let r = constify_imm8_roundscale!(imm8, sae, call); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:6012:5 | 6012 | a: __m512d, | ^ 6013 | k: __mmask8, | ^ 6014 | b: __m512d, | ^ 6015 | c: __m512i, | ^ ... 6024 | let r = constify_imm8_roundscale!(imm8, sae, call); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:6037:5 | 6037 | k: __mmask8, | ^ 6038 | a: __m512d, | ^ 6039 | b: __m512d, | ^ 6040 | c: __m512i, | ^ ... 6049 | let r = constify_imm8_roundscale!(imm8, sae, call); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:6297:9 | 6297 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:6342:9 | 6342 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7241:9 | 7241 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7279:9 | 7279 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7415:9 | 7415 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7453:9 | 7453 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8410:9 | 8410 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8693:9 | 8693 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8738:9 | 8738 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:15842:19 | 15842 | transmute(a ^ 0b11111111_11111111) | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:15851:19 | 15851 | transmute(a ^ 0b11111111_11111111) | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:15933:17 | 15933 | let a = a & 0b00000000_11111111; | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b0000_0000_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:15934:17 | 15934 | let b = b & 0b11111111_00000000; | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_0000_0000` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:15946:13 | 15946 | if r == 0b11111111_11111111 { | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:16263:33 | 16263 | pub unsafe fn _mm512_set4_epi64(d: i64, c: i64, b: i64, a: i64) -> __m512i { | ^ ^ ^ ^ 16264 | let r = i64x8::new(d, c, b, a, d, c, b, a); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:16273:34 | 16273 | pub unsafe fn _mm512_setr4_epi64(d: i64, c: i64, b: i64, a: i64) -> __m512i { | ^ ^ ^ ^ 16274 | let r = i64x8::new(a, b, c, d, a, b, c, d); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19731:33 | 19731 | pub unsafe fn _mm_mask_fmadd_ss(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 19738 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19748:34 | 19748 | pub unsafe fn _mm_maskz_fmadd_ss(k: __mmask8, a: __m128, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 19756 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19766:34 | 19766 | pub unsafe fn _mm_mask3_fmadd_ss(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128 { | ^ ^ ^ ^ ... 19773 | let r = simd_insert(c, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19783:33 | 19783 | pub unsafe fn _mm_mask_fmadd_sd(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 19790 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19800:34 | 19800 | pub unsafe fn _mm_maskz_fmadd_sd(k: __mmask8, a: __m128d, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 19808 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19818:34 | 19818 | pub unsafe fn _mm_mask3_fmadd_sd(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d { | ^ ^ ^ ^ ... 19825 | let r = simd_insert(c, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19835:33 | 19835 | pub unsafe fn _mm_mask_fmsub_ss(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 19843 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19853:34 | 19853 | pub unsafe fn _mm_maskz_fmsub_ss(k: __mmask8, a: __m128, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 19862 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19872:34 | 19872 | pub unsafe fn _mm_mask3_fmsub_ss(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128 { | ^ ^ ^ ^ ... 19880 | let r = simd_insert(c, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19890:33 | 19890 | pub unsafe fn _mm_mask_fmsub_sd(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 19898 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19908:34 | 19908 | pub unsafe fn _mm_maskz_fmsub_sd(k: __mmask8, a: __m128d, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 19917 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19927:34 | 19927 | pub unsafe fn _mm_mask3_fmsub_sd(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d { | ^ ^ ^ ^ ... 19935 | let r = simd_insert(c, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19945:34 | 19945 | pub unsafe fn _mm_mask_fnmadd_ss(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 19953 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19963:35 | 19963 | pub unsafe fn _mm_maskz_fnmadd_ss(k: __mmask8, a: __m128, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 19972 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:19982:35 | 19982 | pub unsafe fn _mm_mask3_fnmadd_ss(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128 { | ^ ^ ^ ^ ... 19990 | let r = simd_insert(c, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:20000:34 | 20000 | pub unsafe fn _mm_mask_fnmadd_sd(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 20008 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:20018:35 | 20018 | pub unsafe fn _mm_maskz_fnmadd_sd(k: __mmask8, a: __m128d, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 20027 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:20037:35 | 20037 | pub unsafe fn _mm_mask3_fnmadd_sd(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d { | ^ ^ ^ ^ ... 20045 | let r = simd_insert(c, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:20055:34 | 20055 | pub unsafe fn _mm_mask_fnmsub_ss(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 20064 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:20074:35 | 20074 | pub unsafe fn _mm_maskz_fnmsub_ss(k: __mmask8, a: __m128, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 20084 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:20094:35 | 20094 | pub unsafe fn _mm_mask3_fnmsub_ss(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128 { | ^ ^ ^ ^ ... 20103 | let r = simd_insert(c, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:20113:34 | 20113 | pub unsafe fn _mm_mask_fnmsub_sd(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 20122 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:20132:35 | 20132 | pub unsafe fn _mm_maskz_fnmsub_sd(k: __mmask8, a: __m128d, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 20142 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:20152:35 | 20152 | pub unsafe fn _mm_mask3_fnmsub_sd(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d { | ^ ^ ^ ^ ... 20161 | let r = simd_insert(c, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22157:5 | 22157 | a: __m128, | ^ 22158 | k: __mmask8, | ^ 22159 | b: __m128, | ^ 22160 | c: __m128, | ^ ... 22174 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22193:5 | 22193 | k: __mmask8, | ^ 22194 | a: __m128, | ^ 22195 | b: __m128, | ^ 22196 | c: __m128, | ^ ... 22211 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22230:5 | 22230 | a: __m128, | ^ 22231 | b: __m128, | ^ 22232 | c: __m128, | ^ 22233 | k: __mmask8, | ^ ... 22247 | let r = simd_insert(c, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22294:5 | 22294 | a: __m128d, | ^ 22295 | k: __mmask8, | ^ 22296 | b: __m128d, | ^ 22297 | c: __m128d, | ^ ... 22311 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22330:5 | 22330 | k: __mmask8, | ^ 22331 | a: __m128d, | ^ 22332 | b: __m128d, | ^ 22333 | c: __m128d, | ^ ... 22348 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22367:5 | 22367 | a: __m128d, | ^ 22368 | b: __m128d, | ^ 22369 | c: __m128d, | ^ 22370 | k: __mmask8, | ^ ... 22384 | let r = simd_insert(c, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22432:5 | 22432 | a: __m128, | ^ 22433 | k: __mmask8, | ^ 22434 | b: __m128, | ^ 22435 | c: __m128, | ^ ... 22450 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22469:5 | 22469 | k: __mmask8, | ^ 22470 | a: __m128, | ^ 22471 | b: __m128, | ^ 22472 | c: __m128, | ^ ... 22488 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22507:5 | 22507 | a: __m128, | ^ 22508 | b: __m128, | ^ 22509 | c: __m128, | ^ 22510 | k: __mmask8, | ^ ... 22525 | let r = simd_insert(c, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22573:5 | 22573 | a: __m128d, | ^ 22574 | k: __mmask8, | ^ 22575 | b: __m128d, | ^ 22576 | c: __m128d, | ^ ... 22591 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22610:5 | 22610 | k: __mmask8, | ^ 22611 | a: __m128d, | ^ 22612 | b: __m128d, | ^ 22613 | c: __m128d, | ^ ... 22629 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22648:5 | 22648 | a: __m128d, | ^ 22649 | b: __m128d, | ^ 22650 | c: __m128d, | ^ 22651 | k: __mmask8, | ^ ... 22666 | let r = simd_insert(c, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22714:5 | 22714 | a: __m128, | ^ 22715 | k: __mmask8, | ^ 22716 | b: __m128, | ^ 22717 | c: __m128, | ^ ... 22732 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22751:5 | 22751 | k: __mmask8, | ^ 22752 | a: __m128, | ^ 22753 | b: __m128, | ^ 22754 | c: __m128, | ^ ... 22770 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22789:5 | 22789 | a: __m128, | ^ 22790 | b: __m128, | ^ 22791 | c: __m128, | ^ 22792 | k: __mmask8, | ^ ... 22807 | let r = simd_insert(c, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22855:5 | 22855 | a: __m128d, | ^ 22856 | k: __mmask8, | ^ 22857 | b: __m128d, | ^ 22858 | c: __m128d, | ^ ... 22873 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22892:5 | 22892 | k: __mmask8, | ^ 22893 | a: __m128d, | ^ 22894 | b: __m128d, | ^ 22895 | c: __m128d, | ^ ... 22911 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22930:5 | 22930 | a: __m128d, | ^ 22931 | b: __m128d, | ^ 22932 | c: __m128d, | ^ 22933 | k: __mmask8, | ^ ... 22948 | let r = simd_insert(c, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:22997:5 | 22997 | a: __m128, | ^ 22998 | k: __mmask8, | ^ 22999 | b: __m128, | ^ 23000 | c: __m128, | ^ ... 23016 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23035:5 | 23035 | k: __mmask8, | ^ 23036 | a: __m128, | ^ 23037 | b: __m128, | ^ 23038 | c: __m128, | ^ ... 23055 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23074:5 | 23074 | a: __m128, | ^ 23075 | b: __m128, | ^ 23076 | c: __m128, | ^ 23077 | k: __mmask8, | ^ ... 23093 | let r = simd_insert(c, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23142:5 | 23142 | a: __m128d, | ^ 23143 | k: __mmask8, | ^ 23144 | b: __m128d, | ^ 23145 | c: __m128d, | ^ ... 23161 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23180:5 | 23180 | k: __mmask8, | ^ 23181 | a: __m128d, | ^ 23182 | b: __m128d, | ^ 23183 | c: __m128d, | ^ ... 23200 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23219:5 | 23219 | a: __m128d, | ^ 23220 | b: __m128d, | ^ 23221 | c: __m128d, | ^ 23222 | k: __mmask8, | ^ ... 23238 | let r = simd_insert(c, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23276:5 | 23276 | a: __m128, | ^ 23277 | k: __mmask8, | ^ 23278 | b: __m128, | ^ 23279 | c: __m128i, | ^ ... 23296 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23308:5 | 23308 | k: __mmask8, | ^ 23309 | a: __m128, | ^ 23310 | b: __m128, | ^ 23311 | c: __m128i, | ^ ... 23328 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23366:5 | 23366 | a: __m128d, | ^ 23367 | k: __mmask8, | ^ 23368 | b: __m128d, | ^ 23369 | c: __m128i, | ^ ... 23386 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23398:5 | 23398 | k: __mmask8, | ^ 23399 | a: __m128d, | ^ 23400 | b: __m128d, | ^ 23401 | c: __m128i, | ^ ... 23418 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23464:5 | 23464 | a: __m128, | ^ 23465 | k: __mmask8, | ^ 23466 | b: __m128, | ^ 23467 | c: __m128i, | ^ ... 23478 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23491:5 | 23491 | k: __mmask8, | ^ 23492 | a: __m128, | ^ 23493 | b: __m128, | ^ 23494 | c: __m128i, | ^ ... 23505 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23551:5 | 23551 | a: __m128d, | ^ 23552 | k: __mmask8, | ^ 23553 | b: __m128d, | ^ 23554 | c: __m128i, | ^ ... 23565 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:23578:5 | 23578 | k: __mmask8, | ^ 23579 | a: __m128d, | ^ 23580 | b: __m128d, | ^ 23581 | c: __m128i, | ^ ... 23592 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2051:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2051 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2052 | | #[inline] 2053 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 2054 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 2055 | | | // arrays of bytes 2056 | | | unsafe { mem::transmute(self) } 2057 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:98:5 | 98 | / int_impl! { i8, i8, u8, 8, -128, 127, "", "", 2, "-0x7e", "0xa", "0x12", "0x12", "0x48", 99 | | "[0x12]", "[0x12]", "", "" } | |__________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2200:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2200 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2201 | | #[inline] 2202 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 2203 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 2204 | | | unsafe { mem::transmute(bytes) } 2205 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:98:5 | 98 | / int_impl! { i8, i8, u8, 8, -128, 127, "", "", 2, "-0x7e", "0xa", "0x12", "0x12", "0x48", 99 | | "[0x12]", "[0x12]", "", "" } | |__________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2051:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2051 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2052 | | #[inline] 2053 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 2054 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 2055 | | | // arrays of bytes 2056 | | | unsafe { mem::transmute(self) } 2057 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:104:5 | 104 | / int_impl! { i16, i16, u16, 16, -32768, 32767, "", "", 4, "-0x5ffd", "0x3a", "0x1234", "0x3412", 105 | | "0x2c48", "[0x34, 0x12]", "[0x12, 0x34]", "", "" } | |________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2200:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2200 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2201 | | #[inline] 2202 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 2203 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 2204 | | | unsafe { mem::transmute(bytes) } 2205 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:104:5 | 104 | / int_impl! { i16, i16, u16, 16, -32768, 32767, "", "", 4, "-0x5ffd", "0x3a", "0x1234", "0x3412", 105 | | "0x2c48", "[0x34, 0x12]", "[0x12, 0x34]", "", "" } | |________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2051:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2051 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2052 | | #[inline] 2053 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 2054 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 2055 | | | // arrays of bytes 2056 | | | unsafe { mem::transmute(self) } 2057 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:110:5 | 110 | / int_impl! { i32, i32, u32, 32, -2147483648, 2147483647, "", "", 8, "0x10000b3", "0xb301", 111 | | "0x12345678", "0x78563412", "0x1e6a2c48", "[0x78, 0x56, 0x34, 0x12]", 112 | | "[0x12, 0x34, 0x56, 0x78]", "", "" } | |__________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2200:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2200 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2201 | | #[inline] 2202 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 2203 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 2204 | | | unsafe { mem::transmute(bytes) } 2205 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:110:5 | 110 | / int_impl! { i32, i32, u32, 32, -2147483648, 2147483647, "", "", 8, "0x10000b3", "0xb301", 111 | | "0x12345678", "0x78563412", "0x1e6a2c48", "[0x78, 0x56, 0x34, 0x12]", 112 | | "[0x12, 0x34, 0x56, 0x78]", "", "" } | |__________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2051:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2051 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2052 | | #[inline] 2053 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 2054 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 2055 | | | // arrays of bytes 2056 | | | unsafe { mem::transmute(self) } 2057 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:117:5 | 117 | / int_impl! { i64, i64, u64, 64, -9223372036854775808, 9223372036854775807, "", "", 12, 118 | | "0xaa00000000006e1", "0x6e10aa", "0x1234567890123456", "0x5634129078563412", 119 | | "0x6a2c48091e6a2c48", "[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]", 120 | | "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]", "", "" } | |__________________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2200:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2200 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2201 | | #[inline] 2202 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 2203 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 2204 | | | unsafe { mem::transmute(bytes) } 2205 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:117:5 | 117 | / int_impl! { i64, i64, u64, 64, -9223372036854775808, 9223372036854775807, "", "", 12, 118 | | "0xaa00000000006e1", "0x6e10aa", "0x1234567890123456", "0x5634129078563412", 119 | | "0x6a2c48091e6a2c48", "[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]", 120 | | "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]", "", "" } | |__________________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2051:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2051 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2052 | | #[inline] 2053 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 2054 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 2055 | | | // arrays of bytes 2056 | | | unsafe { mem::transmute(self) } 2057 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:125:5 | 125 | / int_impl! { i128, i128, u128, 128, -170141183460469231731687303715884105728, 126 | | 170141183460469231731687303715884105727, "", "", 16, 127 | | "0x13f40000000000000000000000004f76", "0x4f7613f4", "0x12345678901234567890123456789012", 128 | | "0x12907856341290785634129078563412", "0x48091e6a2c48091e6a2c48091e6a2c48", ... | 131 | | "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56, \ 132 | | 0x78, 0x90, 0x12, 0x34, 0x56, 0x78, 0x90, 0x12]", "", "" } | |__________________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2200:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2200 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2201 | | #[inline] 2202 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 2203 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 2204 | | | unsafe { mem::transmute(bytes) } 2205 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:125:5 | 125 | / int_impl! { i128, i128, u128, 128, -170141183460469231731687303715884105728, 126 | | 170141183460469231731687303715884105727, "", "", 16, 127 | | "0x13f40000000000000000000000004f76", "0x4f7613f4", "0x12345678901234567890123456789012", 128 | | "0x12907856341290785634129078563412", "0x48091e6a2c48091e6a2c48091e6a2c48", ... | 131 | | "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56, \ 132 | | 0x78, 0x90, 0x12, 0x34, 0x56, 0x78, 0x90, 0x12]", "", "" } | |__________________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2051:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2051 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2052 | | #[inline] 2053 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 2054 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 2055 | | | // arrays of bytes 2056 | | | unsafe { mem::transmute(self) } 2057 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:155:5 | 155 | / int_impl! { isize, i64, usize, 64, -9223372036854775808, 9223372036854775807, "", "", 156 | | 12, "0xaa00000000006e1", "0x6e10aa", "0x1234567890123456", "0x5634129078563412", 157 | | "0x6a2c48091e6a2c48", "[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]", 158 | | "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]", 159 | | usize_isize_to_xe_bytes_doc!(), usize_isize_from_xe_bytes_doc!() } | |_________________________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/int_macros.rs:2200:35 | 1 | / macro_rules! int_impl { 2 | | ($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr, 3 | | $EndFeature:expr, $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 2200 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2201 | | #[inline] 2202 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 2203 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 2204 | | | unsafe { mem::transmute(bytes) } 2205 | | | } | |_|_____________- not a macro ... | 2239 | | } 2240 | | } | |_- in this expansion of `int_impl!` | ::: library/core/src/num/mod.rs:155:5 | 155 | / int_impl! { isize, i64, usize, 64, -9223372036854775808, 9223372036854775807, "", "", 156 | | 12, "0xaa00000000006e1", "0x6e10aa", "0x1234567890123456", "0x5634129078563412", 157 | | "0x6a2c48091e6a2c48", "[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]", 158 | | "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]", 159 | | usize_isize_to_xe_bytes_doc!(), usize_isize_from_xe_bytes_doc!() } | |_________________________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1809:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1809 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1810 | | #[inline] 1811 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 1812 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 1813 | | | // arrays of bytes 1814 | | | unsafe { mem::transmute(self) } 1815 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:164:5 | 164 | / uint_impl! { u8, u8, 8, 255, "", "", 2, "0x82", "0xa", "0x12", "0x12", "0x48", "[0x12]", 165 | | "[0x12]", "", "" } | |________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1958:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1958 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1959 | | #[inline] 1960 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 1961 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 1962 | | | unsafe { mem::transmute(bytes) } 1963 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:164:5 | 164 | / uint_impl! { u8, u8, 8, 255, "", "", 2, "0x82", "0xa", "0x12", "0x12", "0x48", "[0x12]", 165 | | "[0x12]", "", "" } | |________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1809:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1809 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1810 | | #[inline] 1811 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 1812 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 1813 | | | // arrays of bytes 1814 | | | unsafe { mem::transmute(self) } 1815 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:663:5 | 663 | / uint_impl! { u16, u16, 16, 65535, "", "", 4, "0xa003", "0x3a", "0x1234", "0x3412", "0x2c48", 664 | | "[0x34, 0x12]", "[0x12, 0x34]", "", "" } | |______________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1958:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1958 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1959 | | #[inline] 1960 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 1961 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 1962 | | | unsafe { mem::transmute(bytes) } 1963 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:663:5 | 663 | / uint_impl! { u16, u16, 16, 65535, "", "", 4, "0xa003", "0x3a", "0x1234", "0x3412", "0x2c48", 664 | | "[0x34, 0x12]", "[0x12, 0x34]", "", "" } | |______________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1809:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1809 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1810 | | #[inline] 1811 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 1812 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 1813 | | | // arrays of bytes 1814 | | | unsafe { mem::transmute(self) } 1815 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:669:5 | 669 | / uint_impl! { u32, u32, 32, 4294967295, "", "", 8, "0x10000b3", "0xb301", "0x12345678", 670 | | "0x78563412", "0x1e6a2c48", "[0x78, 0x56, 0x34, 0x12]", "[0x12, 0x34, 0x56, 0x78]", "", "" } | |__________________________________________________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1958:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1958 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1959 | | #[inline] 1960 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 1961 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 1962 | | | unsafe { mem::transmute(bytes) } 1963 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:669:5 | 669 | / uint_impl! { u32, u32, 32, 4294967295, "", "", 8, "0x10000b3", "0xb301", "0x12345678", 670 | | "0x78563412", "0x1e6a2c48", "[0x78, 0x56, 0x34, 0x12]", "[0x12, 0x34, 0x56, 0x78]", "", "" } | |__________________________________________________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1809:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1809 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1810 | | #[inline] 1811 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 1812 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 1813 | | | // arrays of bytes 1814 | | | unsafe { mem::transmute(self) } 1815 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:675:5 | 675 | / uint_impl! { u64, u64, 64, 18446744073709551615, "", "", 12, "0xaa00000000006e1", "0x6e10aa", 676 | | "0x1234567890123456", "0x5634129078563412", "0x6a2c48091e6a2c48", 677 | | "[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]", 678 | | "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]", 679 | | "", ""} | |_____________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1958:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1958 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1959 | | #[inline] 1960 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 1961 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 1962 | | | unsafe { mem::transmute(bytes) } 1963 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:675:5 | 675 | / uint_impl! { u64, u64, 64, 18446744073709551615, "", "", 12, "0xaa00000000006e1", "0x6e10aa", 676 | | "0x1234567890123456", "0x5634129078563412", "0x6a2c48091e6a2c48", 677 | | "[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]", 678 | | "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]", 679 | | "", ""} | |_____________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1809:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1809 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1810 | | #[inline] 1811 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 1812 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 1813 | | | // arrays of bytes 1814 | | | unsafe { mem::transmute(self) } 1815 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:684:5 | 684 | / uint_impl! { u128, u128, 128, 340282366920938463463374607431768211455, "", "", 16, 685 | | "0x13f40000000000000000000000004f76", "0x4f7613f4", "0x12345678901234567890123456789012", 686 | | "0x12907856341290785634129078563412", "0x48091e6a2c48091e6a2c48091e6a2c48", 687 | | "[0x12, 0x90, 0x78, 0x56, 0x34, 0x12, 0x90, 0x78, \ ... | 690 | | 0x78, 0x90, 0x12, 0x34, 0x56, 0x78, 0x90, 0x12]", 691 | | "", ""} | |______________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1958:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1958 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1959 | | #[inline] 1960 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 1961 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 1962 | | | unsafe { mem::transmute(bytes) } 1963 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:684:5 | 684 | / uint_impl! { u128, u128, 128, 340282366920938463463374607431768211455, "", "", 16, 685 | | "0x13f40000000000000000000000004f76", "0x4f7613f4", "0x12345678901234567890123456789012", 686 | | "0x12907856341290785634129078563412", "0x48091e6a2c48091e6a2c48091e6a2c48", 687 | | "[0x12, 0x90, 0x78, 0x56, 0x34, 0x12, 0x90, 0x78, \ ... | 690 | | 0x78, 0x90, 0x12, 0x34, 0x56, 0x78, 0x90, 0x12]", 691 | | "", ""} | |______________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1809:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1809 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1810 | | #[inline] 1811 | / | pub const fn to_ne_bytes(self) -> [u8; mem::size_of::()] { 1812 | | | // SAFETY: integers are plain old datatypes so we can always transmute them to 1813 | | | // arrays of bytes 1814 | | | unsafe { mem::transmute(self) } 1815 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:712:5 | 712 | / uint_impl! { usize, u64, 64, 18446744073709551615, "", "", 12, "0xaa00000000006e1", "0x6e10aa", 713 | | "0x1234567890123456", "0x5634129078563412", "0x6a2c48091e6a2c48", 714 | | "[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]", 715 | | "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]", 716 | | usize_isize_to_xe_bytes_doc!(), usize_isize_from_xe_bytes_doc!() } | |________________________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/num/uint_macros.rs:1958:35 | 1 | / macro_rules! uint_impl { 2 | | ($SelfT:ty, $ActualT:ty, $BITS:expr, $MaxV:expr, $Feature:expr, $EndFeature:expr, 3 | | $rot:expr, $rot_op:expr, $rot_result:expr, $swap_op:expr, $swapped:expr, 4 | | $reversed:expr, $le_bytes:expr, $be_bytes:expr, ... | 1958 | | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1959 | | #[inline] 1960 | / | pub const fn from_ne_bytes(bytes: [u8; mem::size_of::()]) -> Self { 1961 | | | // SAFETY: integers are plain old datatypes so we can always transmute to them 1962 | | | unsafe { mem::transmute(bytes) } 1963 | | | } | |_|_____________- not a macro ... | 1993 | | } 1994 | | } | |_- in this expansion of `uint_impl!` | ::: library/core/src/num/mod.rs:712:5 | 712 | / uint_impl! { usize, u64, 64, 18446744073709551615, "", "", 12, "0xaa00000000006e1", "0x6e10aa", 713 | | "0x1234567890123456", "0x5634129078563412", "0x6a2c48091e6a2c48", 714 | | "[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]", 715 | | "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56]", 716 | | usize_isize_to_xe_bytes_doc!(), usize_isize_from_xe_bytes_doc!() } | |________________________________________________________________________- in this macro invocation error: attribute should be applied to a macro --> library/core/src/slice/mod.rs:92:27 | 92 | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_union))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 93 | / pub const fn len(&self) -> usize { 94 | | // SAFETY: this is safe because `&[T]` and `FatPtr` have the same layout. 95 | | // Only `std` can make this guarantee. 96 | | unsafe { crate::ptr::Repr { rust: self }.raw.len } 97 | | } | |_____- not a macro error: attribute should be applied to a macro --> library/core/src/str/mod.rs:223:27 | 223 | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 224 | / pub const fn as_bytes(&self) -> &[u8] { 225 | | // SAFETY: const sound because we transmute two types with the same layout 226 | | unsafe { mem::transmute(self) } 227 | | } | |_____- not a macro error: attribute should be applied to a macro --> library/core/src/str/converts.rs:161:23 | 161 | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_transmute))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 162 | / pub const unsafe fn from_utf8_unchecked(v: &[u8]) -> &str { 163 | | // SAFETY: the caller must guarantee that the bytes `v` are valid UTF-8. 164 | | // Also relies on `&str` and `&[u8]` having the same layout. 165 | | unsafe { mem::transmute(v) } 166 | | } | |_- not a macro error: attribute should be applied to a macro --> library/core/src/task/wake.rs:134:27 | 134 | #[cfg_attr(bootstrap, allow_internal_unstable(const_fn_fn_ptr_basics))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 135 | / pub const fn new( 136 | | clone: unsafe fn(*const ()) -> RawWaker, 137 | | wake: unsafe fn(*const ()), 138 | | wake_by_ref: unsafe fn(*const ()), ... | 141 | | Self { clone, wake, wake_by_ref, drop } 142 | | } | |_____- not a macro error[E0658]: `impl Trait` is not allowed in constant functions --> library/core/src/future/mod.rs:61:43 | 61 | pub const fn from_generator(gen: T) -> impl Future | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: see issue #77463 for more information = help: add `#![feature(const_impl_trait)]` to the crate attributes to enable error[E0277]: the size for values of type `T` cannot be known at compilation time --> library/core/src/mem/mod.rs:153:34 | 153 | pub fn forget_unsized(t: T) { | - ^ doesn't have a size known at compile-time | | | this type parameter needs to be `marker::Sized` | = help: unsized fn params are gated as an unstable feature help: function arguments must have a statically known size, borrowed types always have a known size | 153 | pub fn forget_unsized(&t: T) { | ^ error[E0277]: the size for values of type `T` cannot be known at compilation time --> library/core/src/mem/mod.rs:156:14 | 153 | pub fn forget_unsized(t: T) { | - this type parameter needs to be `marker::Sized` ... 156 | unsafe { intrinsics::forget(t) } | ^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time | = note: all function arguments must have a statically known size = help: unsized fn params are gated as an unstable feature error[E0277]: the size for values of type `Self` cannot be known at compilation time --> library/core/src/ops/range.rs:798:19 | 798 | fn assert_len(self, len: usize) -> Range | ^^^^ doesn't have a size known at compile-time | = help: unsized fn params are gated as an unstable feature help: consider further restricting `Self` | 800 | Self: RangeBounds, Self: marker::Sized | ^^^^^^^^^^^^^^^^^^^^^ help: function arguments must have a statically known size, borrowed types always have a known size | 798 | fn assert_len(&self, len: usize) -> Range | ^ error: aborting due to 32 previous errors; 120 warnings emitted Some errors have detailed explanations: E0277, E0658. For more information about an error, try `rustc --explain E0277`. error: could not compile `core` To learn more, run the command again with --verbose. command did not execute successfully: "/home/nick/development/rust/rust/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "clippy" "--target" "x86_64-unknown-linux-gnu" "-Zunstable-options" "-Zbinary-dep-depinfo" "-j" "4" "--release" "--features" "panic-unwind backtrace compiler-builtins-c" "--manifest-path" "/home/nick/development/rust/rust/library/test/Cargo.toml" "--message-format" "json-render-diagnostics" "--" "--cap-lints" "warn" expected success, got: exit code: 101 failed to run: /home/nick/development/rust/rust/build/bootstrap/debug/bootstrap clippy Build completed unsuccessfully in 0:00:33