[go: up one dir, main page]

core-nightly 2015.1.7

Nightly build of libcore from the rust repo.
Build #90238 2018-03-06 02:25:08

Build failed. If you want to re-trigger a documentation build, you can do it here. You can find more information on docs.rs builds documentation on the builds page.

# rustc version
rustc 1.26.0-dev (5c1d29af0 2018-03-03)# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading core-nightly v2015.1.7
Documenting core-nightly v2015.1.7
Running `rustdoc --crate-name core .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180303-1.26.0-dev-5c1d29af0 -L dependency=/home/cratesfyi/cratesfyi/debug/deps`
error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/num/f32.rs:26:25
|
26 | pub const RADIX: uint = 2u;
|                         ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/num/f32.rs:29:35
|
29 | pub const MANTISSA_DIGITS: uint = 24u;
|                                   ^^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/num/f32.rs:31:26
|
31 | pub const DIGITS: uint = 6u;
|                          ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/num/f64.rs:30:25
|
30 | pub const RADIX: uint = 2u;
|                         ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/num/f64.rs:32:35
|
32 | pub const MANTISSA_DIGITS: uint = 53u;
|                                   ^^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/num/f64.rs:34:26
|
34 | pub const DIGITS: uint = 15u;
|                          ^^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/cmp.rs:113:13
|
113 |     Less = -1i,
|             ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/cmp.rs:116:13
|
116 |     Equal = 0i,
|             ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/cmp.rs:119:15
|
119 |     Greater = 1i,
|               ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:105:53
|
105 |                 Some(transmute(('a' as uint + num - 10u) as u32))
|                                                     ^^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:211:41
|
211 |           'a' ... 'z' => self as uint + 10u - ('a' as uint),
|                                         ^^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:212:41
|
212 |           'A' ... 'Z' => self as uint + 10u - ('A' as uint),
|                                         ^^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:244:40
|
244 |             _ if code < MAX_ONE_B   => 1u,
|                                        ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:245:40
|
245 |             _ if code < MAX_TWO_B   => 2u,
|                                        ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:246:40
|
246 |             _ if code < MAX_THREE_B => 3u,
|                                        ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:247:19
|
247 |             _  => 4u,
|                   ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:267:31
|
267 |             dst[0] = (code >> 6u & 0x1F_u32) as u8 | TAG_TWO_B;
|                               ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:271:31
|
271 |             dst[0] = (code >> 12u & 0x0F_u32) as u8 | TAG_THREE_B;
|                               ^^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:272:32
|
272 |             dst[1] = (code >>  6u & 0x3F_u32) as u8 | TAG_CONT;
|                                ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:276:31
|
276 |             dst[0] = (code >> 18u & 0x07_u32) as u8 | TAG_FOUR_B;
|                               ^^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:277:31
|
277 |             dst[1] = (code >> 12u & 0x3F_u32) as u8 | TAG_CONT;
|                               ^^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:278:32
|
278 |             dst[2] = (code >>  6u & 0x3F_u32) as u8 | TAG_CONT;
|                                ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/char.rs:342:29
|
342 |                 let mut n = 0u;
|                             ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/slice.rs:830:36
|
830 |                     Some(transmute(1u))
|                                    ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/slice.rs:1210:49
|
1210 |             (x.saturating_add(1), x.checked_add(1u))
|                                                 ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/str/mod.rs:199:19
|
199 |     let mut len = 0u;
|                   ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/str/mod.rs:201:16
|
201 |         len += 1u;
|                ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: expected pattern, found `:`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/str/mod.rs:1426:40
|
1426 |         let cur = match self.find(|&mut: c: char| !pat.matches(c)) {
|                                        ^ expected pattern

error: expected pattern, found `:`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/str/mod.rs:1441:30
|
1441 |         match self.find(|&mut: c: char| !pat.matches(c)) {
|                              ^ expected pattern

error: expected pattern, found `:`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/str/mod.rs:1449:31
|
1449 |         match self.rfind(|&mut: c: char| !pat.matches(c)) {
|                               ^ expected pattern

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/str/mod.rs:1503:22
|
1503 |                 i -= 1u;
|                      ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/str/mod.rs:1573:59
|
1573 |             let CharRange {ch, next} = self.char_range_at(0u);
|                                                           ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: expected one of `const`, `crate`, `default`, `extern`, `fn`, `pub`, `type`, or `unsafe`, found `}`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/str/mod.rs:1620:10
|
1620 | #[stable]}
|          ^ expected one of 8 possible tokens here

error: expected one of `const`, `crate`, `default`, `extern`, `fn`, `pub`, `type`, or `unsafe`, found `}`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/str/mod.rs:1625:10
|
1625 | #[stable]}
|          ^ expected one of 8 possible tokens here

error: expected one of `const`, `crate`, `default`, `extern`, `fn`, `pub`, `type`, or `unsafe`, found `}`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/str/mod.rs:1634:10
|
1634 | #[stable]}
|          ^ expected one of 8 possible tokens here

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/hash/sip.rs:156:26
|
156 |         let mut needed = 0u;
|                          ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/float.rs:56:62
|
56 | static DIGIT_E_RADIX: uint = ('e' as uint) - ('a' as uint) + 11u;
|                                                              ^^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/float.rs:194:23
|
194 |         let mut dig = 0u;
|                       ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/float.rs:221:20
|
221 |             dig += 1u;
|                    ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: expected pattern, found `:`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/float.rs:228:33
|
228 |             let ascii2value = |&: chr: u8| {
|                                 ^ expected pattern

error: expected pattern, found `:`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:423:30
|
423 |         let write_prefix = |&: f: &mut Formatter| {
|                              ^ expected pattern

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:528:31
|
528 |             rt::AlignLeft => (0u, padding),
|                               ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:529:60
|
529 |             rt::AlignRight | rt::AlignUnknown => (padding, 0u),
|                                                            ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error[E0557]: feature has been removed
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/lib.rs:61:12
|
61 | #![feature(simd, unsafe_destructor, slicing_syntax)]
|            ^^^^

error[E0260]: the name `core` is defined multiple times
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/lib.rs:140:1
|
140 | mod core {
| ^^^^^^^^ `core` redefined here
|
= note: `core` must be defined only once in the type namespace of this module

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/num/mod.rs:1574:57
|
1574 |                             'E' | 'e' if radix == 10 => 10u as $T,
|                                                         ^^^
...
1602 | from_str_radix_float_impl! { f32 }
| ---------------------------------- in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/num/mod.rs:1575:57
|
1575 |                             'P' | 'p' if radix == 16 => 2u as $T,
|                                                         ^^
...
1602 | from_str_radix_float_impl! { f32 }
| ---------------------------------- in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/num/mod.rs:1574:57
|
1574 |                             'E' | 'e' if radix == 10 => 10u as $T,
|                                                         ^^^
...
1603 | from_str_radix_float_impl! { f64 }
| ---------------------------------- in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/num/mod.rs:1575:57
|
1575 |                             'P' | 'p' if radix == 16 => 2u as $T,
|                                                         ^^
...
1603 | from_str_radix_float_impl! { f64 }
| ---------------------------------- in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/default.rs:153:23
|
153 | default_impl! { uint, 0u }
|                       ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/default.rs:159:22
|
159 | default_impl! { int, 0i }
|                      ^^
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/slice.rs:688:44
|
688 |                             Some(transmute(1u))
|                                            ^^
...
806 | iterator!{struct Iter -> *const T, &'a T}
| ----------------------------------------- in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/slice.rs:722:44
|
722 |                             Some(transmute(1u))
|                                            ^^
...
806 | iterator!{struct Iter -> *const T, &'a T}
| ----------------------------------------- in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/slice.rs:688:44
|
688 |                             Some(transmute(1u))
|                                            ^^
...
930 | iterator!{struct IterMut -> *mut T, &'a mut T}
| ---------------------------------------------- in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `u` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/slice.rs:722:44
|
722 |                             Some(transmute(1u))
|                                            ^^
...
930 | iterator!{struct IterMut -> *mut T, &'a mut T}
| ---------------------------------------------- in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: invalid suffix `i` for numeric literal
--> .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/fmt/mod.rs:821:29
|
821 |                 let mut n = 0i;
|                             ^^
...
839 | tuple! { T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, }
| ------------------------------------------------------------ in this macro invocation
|
= help: the suffix must be one of the integral types (`u32`, `isize`, etc)

error: aborting due to 67 previous errors

You've got a few errors: E0260, E0557
If you want more information on an error, try using "rustc --explain E0260"
thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not document `core-nightly`.,
cause: process didn't exit successfully: `rustdoc --crate-name core .cargo/registry/src/github.com-1ecc6299db9ec823/core-nightly-2015.1.7/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180303-1.26.0-dev-5c1d29af0 -L dependency=/home/cratesfyi/cratesfyi/debug/deps` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.