rustfmt-nightly 0.2.7

Tool to find and fix Rust formatting issues
Build #71018 2017-09-20T22:56:03.229462+00:00
# rustc version
rustc 1.21.0-dev (d835dc82b 2017-08-29)
# docs.rs version
cratesfyi 0.4.1 (003e49d 2017-06-08)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading rustfmt-nightly v0.2.7
Fresh diff v0.1.10
Fresh itoa v0.3.4
Fresh unicode-segmentation v1.2.0
Fresh getopts v0.2.15
Fresh unicode-xid v0.0.4
Fresh lazy_static v0.2.8
Fresh num-traits v0.1.40
Fresh log v0.3.8
Fresh serde v1.0.15
Compiling rustfmt-nightly v0.2.7
Fresh synom v0.11.3
Fresh term v0.4.6
Fresh utf8-ranges v1.0.0
Fresh void v1.0.2
Fresh strings v0.1.0
Fresh dtoa v0.4.2
Fresh toml v0.4.5
Running `rustc --crate-name build_script_build .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/build.rs --crate-type bin --emit=dep-info,link -C debuginfo=2 --cfg 'feature="cargo-fmt"' --cfg 'feature="default"' --cfg 'feature="rustfmt-format-diff"' -C metadata=607595ca6a448156 -C extra-filename=-607595ca6a448156 --out-dir /home/cratesfyi/cratesfyi/debug/build/rustfmt-nightly-607595ca6a448156 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --cap-lints allow`
Fresh quote v0.3.15
Fresh libc v0.2.31
Fresh regex-syntax v0.4.1
Fresh serde_json v1.0.3
Fresh syn v0.11.11
Fresh serde_derive_internals v0.16.0
Fresh serde_derive v1.0.15
Fresh unreachable v1.0.0
Fresh memchr v1.0.1
Fresh thread_local v0.3.4
Fresh aho-corasick v0.6.3
Fresh regex v0.2.2
Fresh env_logger v0.4.3
Running `/home/cratesfyi/cratesfyi/debug/build/rustfmt-nightly-607595ca6a448156/build-script-build`
Documenting rustfmt-nightly v0.2.7
Running `rustdoc --crate-name rustfmt_nightly .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/lib.rs -o /home/cratesfyi/cratesfyi/doc --cfg 'feature="cargo-fmt"' --cfg 'feature="default"' --cfg 'feature="rustfmt-format-diff"' -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern serde_json=/home/cratesfyi/cratesfyi/debug/deps/libserde_json-361449ff84e77035.rlib --extern-version serde_json=serde_json,1.0.3 --extern unicode_segmentation=/home/cratesfyi/cratesfyi/debug/deps/libunicode_segmentation-64ceb3575fa375ed.rlib --extern-version unicode_segmentation=unicode-segmentation,1.2.0 --extern toml=/home/cratesfyi/cratesfyi/debug/deps/libtoml-43a73e8f4c70aac5.rlib --extern-version toml=toml,0.4.5 --extern env_logger=/home/cratesfyi/cratesfyi/debug/deps/libenv_logger-337736c567827560.rlib --extern-version env_logger=env_logger,0.4.3 --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-4cfe391024f1467d.rlib --extern-version log=log,0.3.8 --extern getopts=/home/cratesfyi/cratesfyi/debug/deps/libgetopts-f82e45fb093fcb7c.rlib --extern-version getopts=getopts,0.2.15 --extern libc=/home/cratesfyi/cratesfyi/debug/deps/liblibc-b01a2adffb5bcf92.rlib --extern-version libc=libc,0.2.31 --extern strings=/home/cratesfyi/cratesfyi/debug/deps/libstrings-56eb10835578afef.rlib --extern-version strings=strings,0.1.0 --extern serde=/home/cratesfyi/cratesfyi/debug/deps/libserde-945a6a37fb92248d.rlib --extern-version serde=serde,1.0.15 --extern regex=/home/cratesfyi/cratesfyi/debug/deps/libregex-f57600d45f59abf1.rlib --extern-version regex=regex,0.2.2 --extern diff=/home/cratesfyi/cratesfyi/debug/deps/libdiff-3496ab1cbe46a58c.rlib --extern-version diff=diff,0.1.10 --extern serde_derive=/home/cratesfyi/cratesfyi/debug/deps/libserde_derive-931f0dcef843f60e.so --extern-version serde_derive=serde_derive,1.0.15 --extern term=/home/cratesfyi/cratesfyi/debug/deps/libterm-ebf2d46f2c9791bb.rlib --extern-version term=term,0.4.6`
error[E0599]: no method named `lo` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:50
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                  ^^ field, not a method
...
52 | implement_spanned!(ast::Expr);
| ------------------------------ in this macro invocation
|
= help: did you mean to write `$this.span.lo(), $this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.lo` instead of `$this.span.lo(), $this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.lo(...)`?

error[E0599]: no method named `hi` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:67
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                                   ^^ field, not a method
...
52 | implement_spanned!(ast::Expr);
| ------------------------------ in this macro invocation
|
= help: did you mean to write `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi` instead of `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi(...)`?

error[E0599]: no method named `lo` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:29:37
|
29 |                 mk_sp(attrs[0].span.lo(), $hi)
|                                     ^^ field, not a method
...
52 | implement_spanned!(ast::Expr);
| ------------------------------ in this macro invocation
|
= help: did you mean to write `attrs[0].span.lo` instead of `attrs[0].span.lo(...)`?

error[E0599]: no method named `hi` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:67
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                                   ^^ field, not a method
...
52 | implement_spanned!(ast::Expr);
| ------------------------------ in this macro invocation
|
= help: did you mean to write `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi` instead of `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi(...)`?

error[E0599]: no method named `lo` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:50
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                  ^^ field, not a method
...
53 | implement_spanned!(ast::Field);
| ------------------------------- in this macro invocation
|
= help: did you mean to write `$this.span.lo(), $this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.lo` instead of `$this.span.lo(), $this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.lo(...)`?

error[E0599]: no method named `hi` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:67
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                                   ^^ field, not a method
...
53 | implement_spanned!(ast::Field);
| ------------------------------- in this macro invocation
|
= help: did you mean to write `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi` instead of `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi(...)`?

error[E0599]: no method named `lo` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:29:37
|
29 |                 mk_sp(attrs[0].span.lo(), $hi)
|                                     ^^ field, not a method
...
53 | implement_spanned!(ast::Field);
| ------------------------------- in this macro invocation
|
= help: did you mean to write `attrs[0].span.lo` instead of `attrs[0].span.lo(...)`?

error[E0599]: no method named `hi` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:67
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                                   ^^ field, not a method
...
53 | implement_spanned!(ast::Field);
| ------------------------------- in this macro invocation
|
= help: did you mean to write `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi` instead of `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi(...)`?

error[E0599]: no method named `lo` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:50
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                  ^^ field, not a method
...
54 | implement_spanned!(ast::ForeignItem);
| ------------------------------------- in this macro invocation
|
= help: did you mean to write `$this.span.lo(), $this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.lo` instead of `$this.span.lo(), $this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.lo(...)`?

error[E0599]: no method named `hi` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:67
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                                   ^^ field, not a method
...
54 | implement_spanned!(ast::ForeignItem);
| ------------------------------------- in this macro invocation
|
= help: did you mean to write `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi` instead of `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi(...)`?

error[E0599]: no method named `lo` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:29:37
|
29 |                 mk_sp(attrs[0].span.lo(), $hi)
|                                     ^^ field, not a method
...
54 | implement_spanned!(ast::ForeignItem);
| ------------------------------------- in this macro invocation
|
= help: did you mean to write `attrs[0].span.lo` instead of `attrs[0].span.lo(...)`?

error[E0599]: no method named `hi` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:67
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                                   ^^ field, not a method
...
54 | implement_spanned!(ast::ForeignItem);
| ------------------------------------- in this macro invocation
|
= help: did you mean to write `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi` instead of `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi(...)`?

error[E0599]: no method named `lo` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:50
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                  ^^ field, not a method
...
55 | implement_spanned!(ast::Item);
| ------------------------------ in this macro invocation
|
= help: did you mean to write `$this.span.lo(), $this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.lo` instead of `$this.span.lo(), $this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.lo(...)`?

error[E0599]: no method named `hi` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:67
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                                   ^^ field, not a method
...
55 | implement_spanned!(ast::Item);
| ------------------------------ in this macro invocation
|
= help: did you mean to write `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi` instead of `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi(...)`?

error[E0599]: no method named `lo` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:29:37
|
29 |                 mk_sp(attrs[0].span.lo(), $hi)
|                                     ^^ field, not a method
...
55 | implement_spanned!(ast::Item);
| ------------------------------ in this macro invocation
|
= help: did you mean to write `attrs[0].span.lo` instead of `attrs[0].span.lo(...)`?

error[E0599]: no method named `hi` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:67
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                                   ^^ field, not a method
...
55 | implement_spanned!(ast::Item);
| ------------------------------ in this macro invocation
|
= help: did you mean to write `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi` instead of `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi(...)`?

error[E0599]: no method named `lo` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:50
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                  ^^ field, not a method
...
56 | implement_spanned!(ast::Local);
| ------------------------------- in this macro invocation
|
= help: did you mean to write `$this.span.lo(), $this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.lo` instead of `$this.span.lo(), $this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.lo(...)`?

error[E0599]: no method named `hi` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:67
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                                   ^^ field, not a method
...
56 | implement_spanned!(ast::Local);
| ------------------------------- in this macro invocation
|
= help: did you mean to write `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi` instead of `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi(...)`?

error[E0599]: no method named `lo` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:29:37
|
29 |                 mk_sp(attrs[0].span.lo(), $hi)
|                                     ^^ field, not a method
...
56 | implement_spanned!(ast::Local);
| ------------------------------- in this macro invocation
|
= help: did you mean to write `attrs[0].span.lo` instead of `attrs[0].span.lo(...)`?

error[E0599]: no method named `hi` found for type `syntax::codemap::Span` in the current scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/spanned.rs:37:67
|
37 |         span_with_attrs_lo_hi!($this, $this.span.lo(), $this.span.hi())
|                                                                   ^^ field, not a method
...
56 | implement_spanned!(ast::Local);
| ------------------------------- in this macro invocation
|
= help: did you mean to write `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi` instead of `$this.span.hi())
}
}

macro_rules! implement_spanned {
($this:ty) => {
impl Spanned for $this {
fn span(&self) -> Span {
span_with_attrs!(self.hi(...)`?

error: Compilation failed, aborting rustdoc

thread 'main' panicked at 'ChainedError {
error: Could not document `rustfmt-nightly`.,
cause: process didn't exit successfully: `rustdoc --crate-name rustfmt_nightly .cargo/registry/src/github.com-1ecc6299db9ec823/rustfmt-nightly-0.2.7/src/lib.rs -o /home/cratesfyi/cratesfyi/doc --cfg feature="cargo-fmt" --cfg feature="default" --cfg feature="rustfmt-format-diff" -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern serde_json=/home/cratesfyi/cratesfyi/debug/deps/libserde_json-361449ff84e77035.rlib --extern-version serde_json=serde_json,1.0.3 --extern unicode_segmentation=/home/cratesfyi/cratesfyi/debug/deps/libunicode_segmentation-64ceb3575fa375ed.rlib --extern-version unicode_segmentation=unicode-segmentation,1.2.0 --extern toml=/home/cratesfyi/cratesfyi/debug/deps/libtoml-43a73e8f4c70aac5.rlib --extern-version toml=toml,0.4.5 --extern env_logger=/home/cratesfyi/cratesfyi/debug/deps/libenv_logger-337736c567827560.rlib --extern-version env_logger=env_logger,0.4.3 --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-4cfe391024f1467d.rlib --extern-version log=log,0.3.8 --extern getopts=/home/cratesfyi/cratesfyi/debug/deps/libgetopts-f82e45fb093fcb7c.rlib --extern-version getopts=getopts,0.2.15 --extern libc=/home/cratesfyi/cratesfyi/debug/deps/liblibc-b01a2adffb5bcf92.rlib --extern-version libc=libc,0.2.31 --extern strings=/home/cratesfyi/cratesfyi/debug/deps/libstrings-56eb10835578afef.rlib --extern-version strings=strings,0.1.0 --extern serde=/home/cratesfyi/cratesfyi/debug/deps/libserde-945a6a37fb92248d.rlib --extern-version serde=serde,1.0.15 --extern regex=/home/cratesfyi/cratesfyi/debug/deps/libregex-f57600d45f59abf1.rlib --extern-version regex=regex,0.2.2 --extern diff=/home/cratesfyi/cratesfyi/debug/deps/libdiff-3496ab1cbe46a58c.rlib --extern-version diff=diff,0.1.10 --extern serde_derive=/home/cratesfyi/cratesfyi/debug/deps/libserde_derive-931f0dcef843f60e.so --extern-version serde_derive=serde_derive,1.0.15 --extern term=/home/cratesfyi/cratesfyi/debug/deps/libterm-ebf2d46f2c9791bb.rlib --extern-version term=term,0.4.6` (exit code: 101)
}', src/bin/cratesfyi.rs:142
note: Run with `RUST_BACKTRACE=1` for a backtrace.