Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 5 pull requests #63607

Closed
wants to merge 24 commits into from
Closed

Conversation

Centril
Copy link
Contributor

@Centril Centril commented Aug 15, 2019

Successful merges:

Failed merges:

r? @ghost

matthewjasper and others added 24 commits August 12, 2019 19:22
Most `Ident`s are serialized as `InternedString`s the exceptions are:

* Reexports
* Attributes
* Idents in macro definitions

Using gensyms helped reexports emulate hygiene. However, the actual item
wouldn't have a gensymmed name so would be usable cross-crate. So
removing this case until we have proper cross-crate hygiene seems
sensible.

Codegen attributes (`inline`, `export_name`) are resolved by their
`Symbol`. This meant that opaque macro-expanded codegen attributes could
cause linker errors. This prevented making built-in derives hygienic.
Also make them generally more hygienic with name resolution.
For some reason type checking did this. Further it didn't consider
hygiene.
We now store it in the `Span` of the expression or item.
The implementations were wrong and unused.
…hton

Use libunwind from llvm-project submodule for musl targets

This avoid downloading libunwind by using the scheme introduced in rust-lang#61544
…ves, r=petrochenkov

Opaque builtin derive macros

* Buiilt-in derives are now opaque macros
    * This required limiting the visibility of some previously unexposed functions in `core`.
    * This also required the change to `Ident` serialization.
* All gensyms are replaced with hygienic identifiers
* Use hygiene to avoid most other name-resolution issues with buiilt-in derives.
    *  As far as I know the only remaining case that breaks is an ADT that has the same name as one of its parameters. Fixing this completely seemed to be more effort than it's worth.
* Remove gensym in `Ident::decode`, which lead to linker errors due to `inline` being gensymmed.
    * `Ident`now panics if incremental compilation tries to serialize it (it currently doesn't).
    * `Ident` no longer uses `gensym` to emulate cross-crate hygiene. It only applied to reexports.
    * `SyntaxContext` is no longer serializable.
    * The long-term fix for this is to properly implement cross-crate hygiene, but this seemed to be acceptable for now.
* Move type/const parameter shadowing checks to `resolve`
    * This was previously split between resolve and type checking. The type checking pass compared `InternedString`s, not Identifiers.
* Removed the `SyntaxContext` from `{ast, hir}::{InlineAsm, GlobalAsm}`

cc rust-lang#60869
r? @petrochenkov
Suggest Rust 2018 on `<expr>.await` with no such field

When type checking a field projection (`fn check_field`) to `<expr>.await` where `<expr>: τ` and `τ` is not a primitive type, suggest switching to Rust 2018. E.g.

```
error[E0609]: no field `await` on type `std::pin::Pin<&mut dyn std::future::Future<Output = ()>>`
  --> $DIR/suggest-switching-edition-on-await.rs:31:7
   |
LL |     x.await;
   |       ^^^^^ unknown field
   |
   = note: to `.await` a `Future`, switch to Rust 2018
   = help: set `edition = "2018"` in `Cargo.toml`
   = note: for more on editions, read https://doc.rust-lang.org/edition-guide
```

Fixes rust-lang#63533

This PR also performs some preparatory cleanups in `fn check_field`; the last 2 commits are where the suggestion is introduced and tested respectively.

r? @varkor
Feature gate 'yield $expr?' pre-expansion

Also improve the overall ergonomics of pre-expansion gating in general.

r? @Zoxc
… r=alexreg

libcore: more cleanups using `#![feature(associated_type_bounds)]`

Turns out this was indeed a bootstrapping issue from a test with `./x.py check` locally after rust-lang#63534 merged.

Closes rust-lang#63393

r? @alexreg
cc @iluuu1994
cc rust-lang#52662
@Centril
Copy link
Contributor Author

Centril commented Aug 15, 2019

@bors r+ p=5 rollup=never

@bors
Copy link
Contributor

bors commented Aug 15, 2019

📌 Commit 8f2decb has been approved by Centril

@bors bors added the S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. label Aug 15, 2019
@bors
Copy link
Contributor

bors commented Aug 15, 2019

⌛ Testing commit 8f2decb with merge c8b62df...

bors added a commit that referenced this pull request Aug 15, 2019
Rollup of 5 pull requests

Successful merges:

 - #63173 (Use libunwind from llvm-project submodule for musl targets)
 - #63462 (Opaque builtin derive macros)
 - #63539 (Suggest Rust 2018 on `<expr>.await` with no such field)
 - #63545 (Feature gate 'yield $expr?' pre-expansion)
 - #63584 (libcore: more cleanups using `#![feature(associated_type_bounds)]`)

Failed merges:

r? @ghost
@rust-highfive
Copy link
Collaborator

The job x86_64-gnu-llvm-6.0 of your PR failed (raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem.

Click to expand the log.
2019-08-15T17:15:14.1907094Z ##[command]git remote add origin https://github.com/rust-lang/rust
2019-08-15T17:15:14.2091313Z ##[command]git config gc.auto 0
2019-08-15T17:15:14.2149445Z ##[command]git config --get-all http.https://github.com/rust-lang/rust.extraheader
2019-08-15T17:15:14.2194831Z ##[command]git config --get-all http.proxy
2019-08-15T17:15:14.2306777Z ##[command]git -c http.extraheader="AUTHORIZATION: basic ***" fetch --force --tags --prune --progress --no-recurse-submodules --depth=2 origin +refs/heads/*:refs/remotes/origin/* +refs/pull/63607/merge:refs/remotes/pull/63607/merge
---
2019-08-15T17:15:50.5490408Z do so (now or later) by using -b with the checkout command again. Example:
2019-08-15T17:15:50.5490438Z 
2019-08-15T17:15:50.5490654Z   git checkout -b <new-branch-name>
2019-08-15T17:15:50.5490703Z 
2019-08-15T17:15:50.5490752Z HEAD is now at abeb36a21 Merge 8f2decbde3f847ac71bcf0291423837c1295fdab into f7af19c279b8b7ea3d2c21fcbd67164af8d5d968
2019-08-15T17:15:50.5653329Z ##[section]Starting: Collect CPU-usage statistics in the background
2019-08-15T17:15:50.5655597Z ==============================================================================
2019-08-15T17:15:50.5655643Z Task         : Bash
2019-08-15T17:15:50.5655679Z Description  : Run a Bash script on macOS, Linux, or Windows
---
2019-08-15T17:39:07.3354200Z    Compiling rustc_privacy v0.0.0 (/checkout/src/librustc_privacy)
2019-08-15T17:39:08.8721871Z    Compiling rustc_codegen_ssa v0.0.0 (/checkout/src/librustc_codegen_ssa)
2019-08-15T17:39:44.8377853Z    Compiling rustc_save_analysis v0.0.0 (/checkout/src/librustc_save_analysis)
2019-08-15T17:40:01.6872339Z    Compiling rustc_interface v0.0.0 (/checkout/src/librustc_interface)
2019-08-15T17:41:24.8982855Z error: linking with `cc` failed: exit code: 1
2019-08-15T17:41:24.9008672Z   |
2019-08-15T17:41:24.9102158Z   = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.0.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.1.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.10.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.11.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.12.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.2.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.3.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.4.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.6.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_driver-587d63cb4d69e0ac.so" "-Wl,--version-script=/tmp/rustch3FYAr/list" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.1cdq855nmqwouecp.rcgu.o" "-Wl,-zrelro" "-Wl,-znow" "-Wl,-O1" "-nodefaultlibs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/release/deps" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/build/backtrace-sys-ce86f1e67f7c5c32/out" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/build/miniz-sys-811001ae855212fd/out" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libenv_logger-39812d84bbfe2b11.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libhumantime-d1a9d86e783663fa.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libquick_error-b52ae6e62fe18a00.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_resolve-5d839a4a3ebae4cb.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_privacy-59043759bcab22a5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_typeck-1aa90bac05422510.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_plugin-bc8a756468480c8d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_passes-c3bfdec084009411.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_mir-05a8bc33b2ff82e3.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/liblog_settings-2620b484081ec8f2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libeither-be66c1a9963b273c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_codegen_ssa-9a827dbfcc48cb34.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libtempfile-7dcc5500a694e84f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libremove_dir_all-a10b98c02f91914a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libcc-580cb3ec679a1ef0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_incremental-3951ffb88a6eb90d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_ast_borrowck-2132ee25856e6fb0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_save_analysis-ee321ecee1325abb.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libserde_json-f180caae537f064f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libryu-17527a943b47993b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libitoa-cafbf9ae61da85d2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_codegen_utils-3a00abcae2cd3117.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libpunycode-bc98388f5faa9996.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_metadata-b11bd965ad29927b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libflate2-31c9dbe4de46ec52.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libminiz_sys-829f35f627be716a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libcrc32fast-df4710f26ff3874f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc-08e00d65ee2b464b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libnum_cpus-d9d9e3d323e05da4.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libmeasureme-fc872d44030f5d93.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libmemmap-1c9c5e21f22b4f63.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libchalk_engine-4d23e955653ea77c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libchalk_macros-1cf2838505f165dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/liblazy_static-2804eceb8314c34d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libfmt_macros-f9c512bf542770a2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_fs_util-048ad9cdb9a5276a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_apfloat-648ce9609f2f81ba.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libbacktrace-2f8d68a291f838c5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libbacktrace_sys-a883b0d3ea617415.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_demangle-f6688a0a1c622b3f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libpolonius_engine-852b1ffcf53b21de.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libdatafrog-20da5796e45c2975.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libparking_lot-31476845b241d1d5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libparking_lot_core-43382fa791fab8f0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librand-27220a546062b8dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librand_xorshift-5881699d0271bbca.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librand_pcg-d7ba7a93367d81dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librand_hc-284c64edcaa9062e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librand_chacha-bfd57a2d41977c46.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librand_isaac-8a318270c401df3b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librand_core-1de73f1b5ed833b6.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/liblock_api-e235dde0fbca8f1b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libowning_ref-78f158d03583a646.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libscopeguard-00ce26af83a6ea4d.rlib" "-Wl,--no-whole-archive" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bdynamic" "-ltest-36088b3e8acaa93c" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-lterm-e158702540af0110" "-Wl,-Bstatic" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libsyntax-0080eac368865e5b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_lexer-a01a58b026705edc.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_target-cb594209510cba11.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_errors-8f589586108b76d1.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libatty-8ca53ff70731db4a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libannotate_snippets-5f249de6bb711b79.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libsyntax_pos-11641ede3a552b36.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libunicode_width-5402e80272479668.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libarena-e8adb4266d86b522.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libtermcolor-fd219321841f006e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libproc_macro-ca397c4659406be4.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_data_structures-8448c0e13624c15f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libena-093aaf0cc374bff5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libstable_deref_trait-646a1f04f6a5aa32.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libgraphviz-ba0ef3f480884f4f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libjobserver-07e1d0caa31c449b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/liblibc-29f03ed69e612165.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librustc_hash-677da430504940be.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libbyteorder-c65025eaa21b723f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libserialize-aaf3e4552e45992e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libindexmap-0cc18a36b459b67c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libsmallvec-6ed313b2cf4fd8b6.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libscoped_tls-3dc09d8ab059989c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/liblazy_static-4c7ff80308c4e52f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libbitflags-7b5c97f3018774b1.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librls_data-9c386b65968abef2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/librls_span-00e5850e0d24133e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libserde-c1b899e8f871bdf2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/liblog-6dfac0fdfe7541fc.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustch3FYAr/libcfg_if-cd67395bafbba823.rlib" "-Wl,--no-whole-archive" "-Wl,--start-group" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bdynamic" "-lstd-97be49e9986de672" "-Wl,--end-group" "-Wl,-Bstatic" "/tmp/rustch3FYAr/libcompiler_builtins-5f7546ebef3d3bcd.rlib" "-Wl,-Bdynamic" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" "-shared" "-Wl,-rpath,$ORIGIN/../lib"
2019-08-15T17:41:24.9143741Z   = note: /tmp/rustch3FYAr/libenv_logger-39812d84bbfe2b11.rlib(env_logger-39812d84bbfe2b11.env_logger.agm6r3km-cgu.12.rcgu.o): In function `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383':
2019-08-15T17:41:24.9203932Z           env_logger.agm6r3km-cgu.12:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383'
2019-08-15T17:41:24.9204865Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): first defined here
2019-08-15T17:41:24.9206233Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.12.rcgu.o): In function `_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$::clone::h778ae7abe68244c3':
2019-08-15T17:41:24.9207073Z           rustc_interface.51du1beo-cgu.12:(.text._ZN59_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$5clone17h778ae7abe68244c3E+0x0): multiple definition of `_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$::clone::h778ae7abe68244c3'
2019-08-15T17:41:24.9207950Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN59_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$5clone17h778ae7abe68244c3E+0x0): first defined here
2019-08-15T17:41:24.9209043Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.12.rcgu.o): In function `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h787b191471aef5f9':
2019-08-15T17:41:24.9209657Z           rustc_interface.51du1beo-cgu.12:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): multiple definition of `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h787b191471aef5f9'
2019-08-15T17:41:24.9210460Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): first defined here
2019-08-15T17:41:24.9211583Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.12.rcgu.o): In function `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h787b191471aef5f9':
2019-08-15T17:41:24.9212256Z           rustc_interface.51du1beo-cgu.12:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): multiple definition of `_$LT$rustc..dep_graph..serialized..SerializedDepNodeIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb4c35295eb208a25'
2019-08-15T17:41:24.9212978Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): first defined here
2019-08-15T17:41:24.9213604Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416':
2019-08-15T17:41:24.9214231Z           rustc_interface.51du1beo-cgu.14:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416'
2019-08-15T17:41:24.9215639Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): first defined here
2019-08-15T17:41:24.9216571Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$::clone::h981793ca0380598e':
2019-08-15T17:41:24.9217415Z           rustc_interface.51du1beo-cgu.14:(.text._ZN64_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$5clone17h981793ca0380598eE+0x0): multiple definition of `_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$::clone::h981793ca0380598e'
2019-08-15T17:41:24.9218251Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN64_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$5clone17h981793ca0380598eE+0x0): first defined here
2019-08-15T17:41:24.9219288Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T17:41:24.9219935Z           rustc_interface.51du1beo-cgu.14:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841'
2019-08-15T17:41:24.9220609Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T17:41:24.9221848Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e':
2019-08-15T17:41:24.9222444Z           rustc_interface.51du1beo-cgu.14:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e'
2019-08-15T17:41:24.9223168Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): first defined here
2019-08-15T17:41:24.9223773Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383':
2019-08-15T17:41:24.9224355Z           rustc_interface.51du1beo-cgu.14:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383'
2019-08-15T17:41:24.9224964Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): first defined here
2019-08-15T17:41:24.9226139Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h627aa6a8c9f7fc49':
2019-08-15T17:41:24.9227060Z           rustc_interface.51du1beo-cgu.14:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h627aa6a8c9f7fc49E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h627aa6a8c9f7fc49'
2019-08-15T17:41:24.9227938Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h627aa6a8c9f7fc49E+0x0): first defined here
2019-08-15T17:41:24.9229561Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$::clone::hfca5f67e5bdde432':
2019-08-15T17:41:24.9230717Z           rustc_interface.51du1beo-cgu.14:(.text._ZN67_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$5clone17hfca5f67e5bdde432E+0x0): multiple definition of `_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$::clone::hfca5f67e5bdde432'
2019-08-15T17:41:24.9231912Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN67_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$5clone17hfca5f67e5bdde432E+0x0): first defined here
2019-08-15T17:41:24.9233179Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1':
2019-08-15T17:41:24.9234327Z           rustc_interface.51du1beo-cgu.14:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1'
2019-08-15T17:41:24.9236265Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): first defined here
2019-08-15T17:41:24.9237837Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565':
2019-08-15T17:41:24.9239595Z           rustc_interface.51du1beo-cgu.14:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8634e49eeed33de8'
2019-08-15T17:41:24.9240968Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8634e49eeed33de8E+0x0): first defined here
2019-08-15T17:41:24.9242447Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75':
2019-08-15T17:41:24.9243156Z           rustc_interface.51du1beo-cgu.14:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75'
2019-08-15T17:41:24.9243823Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): first defined here
2019-08-15T17:41:24.9244335Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825':
2019-08-15T17:41:24.9244847Z           rustc_interface.51du1beo-cgu.14:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825'
2019-08-15T17:41:24.9246105Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): first defined here
2019-08-15T17:41:24.9246811Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$core..any..TypeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h67bf702b545a74f8':
2019-08-15T17:41:24.9247620Z           rustc_interface.51du1beo-cgu.15:(.text._ZN58_$LT$core..any..TypeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h67bf702b545a74f8E+0x0): multiple definition of `_$LT$core..any..TypeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h67bf702b545a74f8'
2019-08-15T17:41:24.9248358Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN58_$LT$core..any..TypeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h67bf702b545a74f8E+0x0): first defined here
2019-08-15T17:41:24.9249109Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::hda2173d9314c699d':
2019-08-15T17:41:24.9249589Z           rustc_interface.51du1beo-cgu.15:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17hda2173d9314c699dE+0x0): multiple definition of `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::hda2173d9314c699d'
2019-08-15T17:41:24.9250127Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17hda2173d9314c699dE+0x0): first defined here
2019-08-15T17:41:24.9250725Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a':
2019-08-15T17:41:24.9251222Z           rustc_interface.51du1beo-cgu.15:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): multiple definition of `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a'
2019-08-15T17:41:24.9251825Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): first defined here
2019-08-15T17:41:24.9252377Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$::clone::h46bb1d0328f119a8':
2019-08-15T17:41:24.9252880Z           rustc_interface.51du1beo-cgu.15:(.text._ZN64_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$5clone17h46bb1d0328f119a8E+0x0): multiple definition of `_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$::clone::h46bb1d0328f119a8'
2019-08-15T17:41:24.9253427Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN64_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$5clone17h46bb1d0328f119a8E+0x0): first defined here
2019-08-15T17:41:24.9253920Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$::clone::h64e1b3829bdeb7ce':
2019-08-15T17:41:24.9254417Z           rustc_interface.51du1beo-cgu.15:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): multiple definition of `_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$::clone::h64e1b3829bdeb7ce'
2019-08-15T17:41:24.9255085Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T17:41:24.9256138Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$::clone::h4b54706ce65acace':
2019-08-15T17:41:24.9256821Z           rustc_interface.51du1beo-cgu.15:(.text._ZN65_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$5clone17h4b54706ce65acaceE+0x0): multiple definition of `_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$::clone::h4b54706ce65acace'
2019-08-15T17:41:24.9257547Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN65_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$5clone17h4b54706ce65acaceE+0x0): first defined here
2019-08-15T17:41:24.9258227Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$::clone::hf71f87b0dd79d485':
2019-08-15T17:41:24.9259174Z           rustc_interface.51du1beo-cgu.15:(.text._ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17hf71f87b0dd79d485E+0x0): multiple definition of `_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$::clone::hf71f87b0dd79d485'
2019-08-15T17:41:24.9259789Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17hf71f87b0dd79d485E+0x0): first defined here
2019-08-15T17:41:24.9260391Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T17:41:24.9260943Z           rustc_interface.51du1beo-cgu.15:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): multiple definition of `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9'
2019-08-15T17:41:24.9261483Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T17:41:24.9261996Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$::clone::h26345023f52bea36':
2019-08-15T17:41:24.9262481Z           rustc_interface.51du1beo-cgu.15:(.text._ZN71_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$5clone17h26345023f52bea36E+0x0): multiple definition of `_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$::clone::h26345023f52bea36'
2019-08-15T17:41:24.9263025Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN71_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$5clone17h26345023f52bea36E+0x0): first defined here
2019-08-15T17:41:24.9263657Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$::clone::h7c1b0aa48e35fa89':
2019-08-15T17:41:24.9264153Z           rustc_interface.51du1beo-cgu.15:(.text._ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h7c1b0aa48e35fa89E+0x0): multiple definition of `_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$::clone::h7c1b0aa48e35fa89'
2019-08-15T17:41:24.9264697Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h7c1b0aa48e35fa89E+0x0): first defined here
2019-08-15T17:41:24.9265562Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$::clone::ha7af95504ad1d484':
2019-08-15T17:41:24.9266256Z           rustc_interface.51du1beo-cgu.4:(.text._ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17ha7af95504ad1d484E+0x0): multiple definition of `_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$::clone::ha7af95504ad1d484'
2019-08-15T17:41:24.9267534Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17ha7af95504ad1d484E+0x0): first defined here
2019-08-15T17:41:24.9268218Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$::clone::h2d3bf25f42fb716c':
2019-08-15T17:41:24.9269355Z           rustc_interface.51du1beo-cgu.4:(.text._ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17h2d3bf25f42fb716cE+0x0): multiple definition of `_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$::clone::h2d3bf25f42fb716c'
2019-08-15T17:41:24.9270143Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17h2d3bf25f42fb716cE+0x0): first defined here
2019-08-15T17:41:24.9270795Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$::clone::hf7eacee7f5b97729':
2019-08-15T17:41:24.9271592Z           rustc_interface.51du1beo-cgu.4:(.text._ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17hf7eacee7f5b97729E+0x0): multiple definition of `_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$::clone::hf7eacee7f5b97729'
2019-08-15T17:41:24.9272905Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17hf7eacee7f5b97729E+0x0): first defined here
2019-08-15T17:41:24.9274534Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$::clone::h56fd2ce728c4a0c4':
2019-08-15T17:41:24.9275801Z           rustc_interface.51du1beo-cgu.4:(.text._ZN55_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$5clone17h56fd2ce728c4a0c4E+0x0): multiple definition of `_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$::clone::h56fd2ce728c4a0c4'
2019-08-15T17:41:24.9276566Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$5clone17h56fd2ce728c4a0c4E+0x0): first defined here
2019-08-15T17:41:24.9277196Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$::clone::h6bd3ab1021f0941b':
2019-08-15T17:41:24.9278453Z           rustc_interface.51du1beo-cgu.4:(.text._ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h6bd3ab1021f0941bE+0x0): multiple definition of `_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$::clone::h6bd3ab1021f0941b'
2019-08-15T17:41:24.9282913Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h6bd3ab1021f0941bE+0x0): first defined here
2019-08-15T17:41:24.9284927Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$::clone::h2235ccd7c25d950e':
2019-08-15T17:41:24.9286317Z           rustc_interface.51du1beo-cgu.4:(.text._ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17h2235ccd7c25d950eE+0x0): multiple definition of `_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$::clone::h2235ccd7c25d950e'
2019-08-15T17:41:24.9287015Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17h2235ccd7c25d950eE+0x0): first defined here
2019-08-15T17:41:24.9287542Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$::clone::h4b6e1c0b1090f1c6':
2019-08-15T17:41:24.9288016Z           rustc_interface.51du1beo-cgu.4:(.text._ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h4b6e1c0b1090f1c6E+0x0): multiple definition of `_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$::clone::h4b6e1c0b1090f1c6'
2019-08-15T17:41:24.9288566Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h4b6e1c0b1090f1c6E+0x0): first defined here
2019-08-15T17:41:24.9289484Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$::clone::h8ce49d7fe24aea62':
2019-08-15T17:41:24.9290193Z           rustc_interface.51du1beo-cgu.4:(.text._ZN56_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$5clone17h8ce49d7fe24aea62E+0x0): multiple definition of `_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$::clone::h8ce49d7fe24aea62'
2019-08-15T17:41:24.9290872Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$5clone17h8ce49d7fe24aea62E+0x0): first defined here
2019-08-15T17:41:24.9291223Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$::clone::hd6df610aef6e2918':
2019-08-15T17:41:24.9291580Z           rustc_interface.51du1beo-cgu.4:(.text._ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17hd6df610aef6e2918E+0x0): multiple definition of `_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$::clone::hd6df610aef6e2918'
2019-08-15T17:41:24.9291974Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17hd6df610aef6e2918E+0x0): first defined here
2019-08-15T17:41:24.9292340Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$::clone::h37d4df313f0d3a6d':
2019-08-15T17:41:24.9292687Z           rustc_interface.51du1beo-cgu.4:(.text._ZN57_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$5clone17h37d4df313f0d3a6dE+0x0): multiple definition of `_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$::clone::h37d4df313f0d3a6d'
2019-08-15T17:41:24.9293096Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$5clone17h37d4df313f0d3a6dE+0x0): first defined here
2019-08-15T17:41:24.9293446Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$::clone::h319f9f8f49136073':
2019-08-15T17:41:24.9293873Z           rustc_interface.51du1beo-cgu.4:(.text._ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h319f9f8f49136073E+0x0): multiple definition of `_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$::clone::h319f9f8f49136073'
2019-08-15T17:41:24.9294321Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h319f9f8f49136073E+0x0): first defined here
2019-08-15T17:41:24.9294676Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$::clone::hd5e4433c65aea665':
2019-08-15T17:41:24.9295039Z           rustc_interface.51du1beo-cgu.4:(.text._ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17hd5e4433c65aea665E+0x0): multiple definition of `_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$::clone::hd5e4433c65aea665'
2019-08-15T17:41:24.9296192Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17hd5e4433c65aea665E+0x0): first defined here
2019-08-15T17:41:24.9296669Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$::clone::h3a1cb7973604aa7c':
2019-08-15T17:41:24.9297266Z           rustc_interface.51du1beo-cgu.4:(.text._ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17h3a1cb7973604aa7cE+0x0): multiple definition of `_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$::clone::h3a1cb7973604aa7c'
2019-08-15T17:41:24.9297817Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17h3a1cb7973604aa7cE+0x0): first defined here
2019-08-15T17:41:24.9298277Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$::clone::hfa3796e093c0cf87':
2019-08-15T17:41:24.9299087Z           rustc_interface.51du1beo-cgu.4:(.text._ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17hfa3796e093c0cf87E+0x0): multiple definition of `_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$::clone::hfa3796e093c0cf87'
2019-08-15T17:41:24.9299497Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17hfa3796e093c0cf87E+0x0): first defined here
2019-08-15T17:41:24.9299859Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$::clone::h464cdfe8607b2196':
2019-08-15T17:41:24.9309315Z           rustc_interface.51du1beo-cgu.4:(.text._ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h464cdfe8607b2196E+0x0): multiple definition of `_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$::clone::h464cdfe8607b2196'
2019-08-15T17:41:24.9310236Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h464cdfe8607b2196E+0x0): first defined here
2019-08-15T17:41:24.9310996Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$::clone::hc13b5ac7d3e09b83':
2019-08-15T17:41:24.9311599Z           rustc_interface.51du1beo-cgu.4:(.text._ZN60_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$5clone17hc13b5ac7d3e09b83E+0x0): multiple definition of `_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$::clone::hc13b5ac7d3e09b83'
2019-08-15T17:41:24.9312597Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$5clone17hc13b5ac7d3e09b83E+0x0): first defined here
2019-08-15T17:41:24.9313266Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$::clone::h81b70c43366e7a2a':
2019-08-15T17:41:24.9313723Z           rustc_interface.51du1beo-cgu.4:(.text._ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h81b70c43366e7a2aE+0x0): multiple definition of `_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$::clone::h81b70c43366e7a2a'
2019-08-15T17:41:24.9314742Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h81b70c43366e7a2aE+0x0): first defined here
2019-08-15T17:41:24.9315721Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$::clone::hab38708faef80148':
2019-08-15T17:41:24.9316220Z           rustc_interface.51du1beo-cgu.4:(.text._ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17hab38708faef80148E+0x0): multiple definition of `_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$::clone::hab38708faef80148'
2019-08-15T17:41:24.9316793Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17hab38708faef80148E+0x0): first defined here
2019-08-15T17:41:24.9317263Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$::clone::h8bc19b5f05f0901d':
2019-08-15T17:41:24.9318170Z           rustc_interface.51du1beo-cgu.4:(.text._ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h8bc19b5f05f0901dE+0x0): multiple definition of `_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$::clone::h8bc19b5f05f0901d'
2019-08-15T17:41:24.9318730Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h8bc19b5f05f0901dE+0x0): first defined here
2019-08-15T17:41:24.9319660Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$::clone::hf797b7e40c65838c':
2019-08-15T17:41:24.9320346Z           rustc_interface.51du1beo-cgu.4:(.text._ZN60_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$5clone17hf797b7e40c65838cE+0x0): multiple definition of `_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$::clone::hf797b7e40c65838c'
2019-08-15T17:41:24.9320928Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$5clone17hf797b7e40c65838cE+0x0): first defined here
2019-08-15T17:41:24.9321966Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$::clone::h657ae1118b352aad':
2019-08-15T17:41:24.9322783Z           rustc_interface.51du1beo-cgu.4:(.text._ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17h657ae1118b352aadE+0x0): multiple definition of `_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$::clone::h657ae1118b352aad'
2019-08-15T17:41:24.9323486Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17h657ae1118b352aadE+0x0): first defined here
2019-08-15T17:41:24.9324437Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$::clone::h9ac1f644ed52bca2':
2019-08-15T17:41:24.9325759Z           rustc_interface.51du1beo-cgu.4:(.text._ZN61_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$5clone17h9ac1f644ed52bca2E+0x0): multiple definition of `_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$::clone::h9ac1f644ed52bca2'
2019-08-15T17:41:24.9326356Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$5clone17h9ac1f644ed52bca2E+0x0): first defined here
2019-08-15T17:41:24.9327075Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$::clone::h8c9cac8f2ca45eb7':
2019-08-15T17:41:24.9327840Z           rustc_interface.51du1beo-cgu.4:(.text._ZN61_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$5clone17h8c9cac8f2ca45eb7E+0x0): multiple definition of `_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$::clone::h8c9cac8f2ca45eb7'
2019-08-15T17:41:24.9328408Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$5clone17h8c9cac8f2ca45eb7E+0x0): first defined here
2019-08-15T17:41:24.9328871Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$::clone::hba83b6457ba96a9d':
2019-08-15T17:41:24.9329472Z           rustc_interface.51du1beo-cgu.4:(.text._ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17hba83b6457ba96a9dE+0x0): multiple definition of `_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$::clone::hba83b6457ba96a9d'
2019-08-15T17:41:24.9330050Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17hba83b6457ba96a9dE+0x0): first defined here
2019-08-15T17:41:24.9330845Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc8ffc6cddda037f':
2019-08-15T17:41:24.9331527Z           rustc_interface.51du1beo-cgu.4:(.text._ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc8ffc6cddda037fE+0x0): multiple definition of `_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc8ffc6cddda037f'
2019-08-15T17:41:24.9332012Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc8ffc6cddda037fE+0x0): first defined here
2019-08-15T17:41:24.9332690Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$::clone::he03072ea426998be':
2019-08-15T17:41:24.9333363Z           rustc_interface.51du1beo-cgu.4:(.text._ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17he03072ea426998beE+0x0): multiple definition of `_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$::clone::he03072ea426998be'
2019-08-15T17:41:24.9333845Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17he03072ea426998beE+0x0): first defined here
2019-08-15T17:41:24.9334252Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc763300301e91f0':
2019-08-15T17:41:24.9334663Z           rustc_interface.51du1beo-cgu.4:(.text._ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc763300301e91f0E+0x0): multiple definition of `_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc763300301e91f0'
2019-08-15T17:41:24.9335498Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc763300301e91f0E+0x0): first defined here
2019-08-15T17:41:24.9335997Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$::clone::hf79c5c5c090f1856':
2019-08-15T17:41:24.9336488Z           rustc_interface.51du1beo-cgu.4:(.text._ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hf79c5c5c090f1856E+0x0): multiple definition of `_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$::clone::hf79c5c5c090f1856'
2019-08-15T17:41:24.9337145Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hf79c5c5c090f1856E+0x0): first defined here
2019-08-15T17:41:24.9337645Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$::clone::hc4a4bb7b01687475':
2019-08-15T17:41:24.9338139Z           rustc_interface.51du1beo-cgu.4:(.text._ZN63_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$5clone17hc4a4bb7b01687475E+0x0): multiple definition of `_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$::clone::hc4a4bb7b01687475'
2019-08-15T17:41:24.9338862Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$5clone17hc4a4bb7b01687475E+0x0): first defined here
2019-08-15T17:41:24.9339222Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$::clone::h7948d4049cac020a':
2019-08-15T17:41:24.9339589Z           rustc_interface.51du1beo-cgu.4:(.text._ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h7948d4049cac020aE+0x0): multiple definition of `_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$::clone::h7948d4049cac020a'
2019-08-15T17:41:24.9340081Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h7948d4049cac020aE+0x0): first defined here
2019-08-15T17:41:24.9340454Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$::clone::hafa3fec4dbe4ef36':
2019-08-15T17:41:24.9340809Z           rustc_interface.51du1beo-cgu.4:(.text._ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17hafa3fec4dbe4ef36E+0x0): multiple definition of `_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$::clone::hafa3fec4dbe4ef36'
2019-08-15T17:41:24.9341236Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17hafa3fec4dbe4ef36E+0x0): first defined here
2019-08-15T17:41:24.9341604Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$::clone::h60036ab162659d98':
2019-08-15T17:41:24.9341963Z           rustc_interface.51du1beo-cgu.4:(.text._ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h60036ab162659d98E+0x0): multiple definition of `_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$::clone::h60036ab162659d98'
2019-08-15T17:41:24.9342383Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h60036ab162659d98E+0x0): first defined here
2019-08-15T17:41:24.9342812Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$::clone::hfc6d21363c24b4f6':
2019-08-15T17:41:24.9343199Z           rustc_interface.51du1beo-cgu.4:(.text._ZN64_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$5clone17hfc6d21363c24b4f6E+0x0): multiple definition of `_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$::clone::hfc6d21363c24b4f6'
2019-08-15T17:41:24.9343620Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$5clone17hfc6d21363c24b4f6E+0x0): first defined here
2019-08-15T17:41:24.9343985Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$::clone::he7ae39b89981b0d1':
2019-08-15T17:41:24.9344362Z           rustc_interface.51du1beo-cgu.4:(.text._ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17he7ae39b89981b0d1E+0x0): multiple definition of `_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$::clone::he7ae39b89981b0d1'
2019-08-15T17:41:24.9345207Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17he7ae39b89981b0d1E+0x0): first defined here
2019-08-15T17:41:24.9345814Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$::clone::h86cbf6b2130f9de0':
2019-08-15T17:41:24.9346317Z           rustc_interface.51du1beo-cgu.4:(.text._ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h86cbf6b2130f9de0E+0x0): multiple definition of `_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$::clone::h86cbf6b2130f9de0'
2019-08-15T17:41:24.9346861Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h86cbf6b2130f9de0E+0x0): first defined here
2019-08-15T17:41:24.9347353Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$::clone::h17a5688fdaffdb67':
2019-08-15T17:41:24.9347854Z           rustc_interface.51du1beo-cgu.4:(.text._ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17h17a5688fdaffdb67E+0x0): multiple definition of `_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$::clone::h17a5688fdaffdb67'
2019-08-15T17:41:24.9348476Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17h17a5688fdaffdb67E+0x0): first defined here
2019-08-15T17:41:24.9348858Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$::clone::h7eebfa4f376eb15d':
2019-08-15T17:41:24.9349309Z           rustc_interface.51du1beo-cgu.4:(.text._ZN67_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$5clone17h7eebfa4f376eb15dE+0x0): multiple definition of `_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$::clone::h7eebfa4f376eb15d'
2019-08-15T17:41:24.9349781Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN67_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$5clone17h7eebfa4f376eb15dE+0x0): first defined here
2019-08-15T17:41:24.9350161Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$::clone::h369aa04e0a6d4f57':
2019-08-15T17:41:24.9350551Z           rustc_interface.51du1beo-cgu.4:(.text._ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17h369aa04e0a6d4f57E+0x0): multiple definition of `_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$::clone::h369aa04e0a6d4f57'
2019-08-15T17:41:24.9350993Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17h369aa04e0a6d4f57E+0x0): first defined here
2019-08-15T17:41:24.9351356Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$::clone::hb0f07726dd841639':
2019-08-15T17:41:24.9351851Z           rustc_interface.51du1beo-cgu.4:(.text._ZN73_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$5clone17hb0f07726dd841639E+0x0): multiple definition of `_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$::clone::hb0f07726dd841639'
2019-08-15T17:41:24.9352443Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN73_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$5clone17hb0f07726dd841639E+0x0): first defined here
2019-08-15T17:41:24.9352778Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.5.rcgu.o): In function `_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$::clone::hb19105d312ceba5b':
2019-08-15T17:41:24.9353142Z           rustc_interface.51du1beo-cgu.5:(.text._ZN57_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$5clone17hb19105d312ceba5bE+0x0): multiple definition of `_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$::clone::hb19105d312ceba5b'
2019-08-15T17:41:24.9353553Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN57_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$5clone17hb19105d312ceba5bE+0x0): first defined here
2019-08-15T17:41:24.9354076Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.5.rcgu.o): In function `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4':
2019-08-15T17:41:24.9355364Z           rustc_interface.51du1beo-cgu.5:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): multiple definition of `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4'
2019-08-15T17:41:24.9355982Z           /tmp/rustch3FYAr/libenv_logger-39812d84bbfe2b11.rlib(env_logger-39812d84bbfe2b11.env_logger.agm6r3km-cgu.15.rcgu.o):env_logger.agm6r3km-cgu.15:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): first defined here
2019-08-15T17:41:24.9356507Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$::clone::h1a06559b6eef647e':
2019-08-15T17:41:24.9356994Z           rustc_interface.51du1beo-cgu.7:(.text._ZN67_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$5clone17h1a06559b6eef647eE+0x0): multiple definition of `_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$::clone::h1a06559b6eef647e'
2019-08-15T17:41:24.9357571Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T17:41:24.9358060Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$::clone::h27a2cfc534fd3a5c':
2019-08-15T17:41:24.9359218Z           rustc_interface.51du1beo-cgu.7:(.text._ZN69_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$5clone17h27a2cfc534fd3a5cE+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$::clone::h27a2cfc534fd3a5c'
2019-08-15T17:41:24.9359754Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$5clone17h27a2cfc534fd3a5cE+0x0): first defined here
2019-08-15T17:41:24.9360123Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286':
2019-08-15T17:41:24.9360675Z           rustc_interface.51du1beo-cgu.7:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286'
2019-08-15T17:41:24.9361137Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): first defined here
2019-08-15T17:41:24.9361504Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.7.rcgu.o): In function `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50':
2019-08-15T17:41:24.9361898Z           rustc_interface.51du1beo-cgu.7:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): multiple definition of `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50'
2019-08-15T17:41:24.9362495Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): first defined here
2019-08-15T17:41:24.9362939Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.7.rcgu.o): In function `_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8410e18c68afaf77':
2019-08-15T17:41:24.9363366Z           rustc_interface.51du1beo-cgu.7:(.text._ZN88_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8410e18c68afaf77E+0x0): multiple definition of `_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8410e18c68afaf77'
2019-08-15T17:41:24.9363798Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN88_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8410e18c68afaf77E+0x0): first defined here
2019-08-15T17:41:24.9364155Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.8.rcgu.o): In function `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::hd1e6199d804827f3':
2019-08-15T17:41:24.9364518Z           rustc_interface.51du1beo-cgu.8:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17hd1e6199d804827f3E+0x0): multiple definition of `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::hd1e6199d804827f3'
2019-08-15T17:41:24.9365008Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17hd1e6199d804827f3E+0x0): first defined here
2019-08-15T17:41:24.9365814Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::hda2173d9314c699d':
2019-08-15T17:41:24.9366280Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17hda2173d9314c699dE+0x0): multiple definition of `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::hda2173d9314c699d'
2019-08-15T17:41:24.9366835Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17hda2173d9314c699dE+0x0): first defined here
2019-08-15T17:41:24.9367318Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T17:41:24.9367800Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841'
2019-08-15T17:41:24.9368353Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T17:41:24.9368960Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565':
2019-08-15T17:41:24.9369708Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565'
2019-08-15T17:41:24.9370242Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o):rustc_interface.51du1beo-cgu.14:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): first defined here
2019-08-15T17:41:24.9370711Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286':
2019-08-15T17:41:24.9371483Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286'
2019-08-15T17:41:24.9371918Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): first defined here
2019-08-15T17:41:24.9372572Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75':
2019-08-15T17:41:24.9372958Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75'
2019-08-15T17:41:24.9373401Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): first defined here
2019-08-15T17:41:24.9373754Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825':
2019-08-15T17:41:24.9374204Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825'
2019-08-15T17:41:24.9374646Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): first defined here
2019-08-15T17:41:24.9375486Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.11.rcgu.o): In function `_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$::clone::h7d39887b6fb4b2bf':
2019-08-15T17:41:24.9376139Z           rustc_lint.eo11z9c2-cgu.11:(.text._ZN76_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$5clone17h7d39887b6fb4b2bfE+0x0): multiple definition of `_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$::clone::h7d39887b6fb4b2bf'
2019-08-15T17:41:24.9376711Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.5.rcgu.o):rustc_interface.51du1beo-cgu.5:(.text._ZN76_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$5clone17h7d39887b6fb4b2bfE+0x0): first defined here
2019-08-15T17:41:24.9377172Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.13.rcgu.o): In function `_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$::clone::h4ad482acfa3ef01b':
2019-08-15T17:41:24.9377661Z           rustc_lint.eo11z9c2-cgu.13:(.text._ZN58_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$5clone17h4ad482acfa3ef01bE+0x0): multiple definition of `_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$::clone::h4ad482acfa3ef01b'
2019-08-15T17:41:24.9378175Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.5.rcgu.o):rustc_interface.51du1beo-cgu.5:(.text._ZN58_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$5clone17h4ad482acfa3ef01bE+0x0): first defined here
2019-08-15T17:41:24.9378911Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.13.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T17:41:24.9379280Z           rustc_lint.eo11z9c2-cgu.13:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): multiple definition of `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9'
2019-08-15T17:41:24.9379812Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T17:41:24.9380171Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.13.rcgu.o): In function `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50':
2019-08-15T17:41:24.9380559Z           rustc_lint.eo11z9c2-cgu.13:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): multiple definition of `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50'
2019-08-15T17:41:24.9381002Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): first defined here
2019-08-15T17:41:24.9381378Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.15.rcgu.o): In function `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h787b191471aef5f9':
2019-08-15T17:41:24.9381785Z           rustc_lint.eo11z9c2-cgu.15:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): multiple definition of `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h787b191471aef5f9'
2019-08-15T17:41:24.9382289Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): first defined here
2019-08-15T17:41:24.9382682Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.2.rcgu.o): In function `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::hd1e6199d804827f3':
2019-08-15T17:41:24.9383226Z           rustc_lint.eo11z9c2-cgu.2:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17hd1e6199d804827f3E+0x0): multiple definition of `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::hd1e6199d804827f3'
2019-08-15T17:41:24.9383692Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17hd1e6199d804827f3E+0x0): first defined here
2019-08-15T17:41:24.9384060Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4':
2019-08-15T17:41:24.9384425Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): multiple definition of `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4'
2019-08-15T17:41:24.9384983Z           /tmp/rustch3FYAr/libenv_logger-39812d84bbfe2b11.rlib(env_logger-39812d84bbfe2b11.env_logger.agm6r3km-cgu.15.rcgu.o):env_logger.agm6r3km-cgu.15:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): first defined here
2019-08-15T17:41:24.9385833Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$::gt::hbc62750dd2c847bf':
2019-08-15T17:41:24.9386323Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN61_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$2gt17hbc62750dd2c847bfE+0x0): multiple definition of `_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$::gt::hbc62750dd2c847bf'
2019-08-15T17:41:24.9386859Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN61_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$2gt17hbc62750dd2c847bfE+0x0): first defined here
2019-08-15T17:41:24.9387342Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416':
2019-08-15T17:41:24.9387831Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416'
2019-08-15T17:41:24.9388374Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): first defined here
2019-08-15T17:41:24.9389133Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e':
2019-08-15T17:41:24.9389573Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e'
2019-08-15T17:41:24.9390217Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): first defined here
2019-08-15T17:41:24.9390577Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h627aa6a8c9f7fc49':
2019-08-15T17:41:24.9390933Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h627aa6a8c9f7fc49E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h627aa6a8c9f7fc49'
2019-08-15T17:41:24.9391349Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h627aa6a8c9f7fc49E+0x0): first defined here
2019-08-15T17:41:24.9391680Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1':
2019-08-15T17:41:24.9392141Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1'
2019-08-15T17:41:24.9392558Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): first defined here
2019-08-15T17:41:24.9392885Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8634e49eeed33de8':
2019-08-15T17:41:24.9393252Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8634e49eeed33de8E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8634e49eeed33de8'
2019-08-15T17:41:24.9393654Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8634e49eeed33de8E+0x0): first defined here
2019-08-15T17:41:24.9394015Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$::clone::h671f5af7ef348218':
2019-08-15T17:41:24.9394417Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN87_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$5clone17h671f5af7ef348218E+0x0): multiple definition of `_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$::clone::h671f5af7ef348218'
2019-08-15T17:41:24.9394889Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o):rustc_interface.51du1beo-cgu.15:(.text._ZN87_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$5clone17h671f5af7ef348218E+0x0): first defined here
2019-08-15T17:41:24.9395735Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.7.rcgu.o): In function `_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8410e18c68afaf77':
2019-08-15T17:41:24.9397397Z           rustc_lint.eo11z9c2-cgu.7:(.text._ZN88_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8410e18c68afaf77E+0x0): multiple definition of `_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8410e18c68afaf77'
2019-08-15T17:41:24.9398035Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN88_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8410e18c68afaf77E+0x0): first defined here
2019-08-15T17:41:24.9398518Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.7.rcgu.o): In function `_$LT$syntax_pos..hygiene..SyntaxContext$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf801b3b65e9ba545':
2019-08-15T17:41:24.9439427Z           rustc_lint.eo11z9c2-cgu.7:(.text._ZN75_$LT$syntax_pos..hygiene..SyntaxContext$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf801b3b65e9ba545E+0x0): multiple definition of `_$LT$rustc..dep_graph..serialized..SerializedDepNodeIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb4c35295eb208a25'
2019-08-15T17:41:24.9439937Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): first defined here
2019-08-15T17:41:24.9440462Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$::clone::ha7af95504ad1d484':
2019-08-15T17:41:24.9440828Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17ha7af95504ad1d484E+0x0): multiple definition of `_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$::clone::ha7af95504ad1d484'
2019-08-15T17:41:24.9441277Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17ha7af95504ad1d484E+0x0): first defined here
2019-08-15T17:41:24.9441643Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$::clone::h2d3bf25f42fb716c':
2019-08-15T17:41:24.9441995Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17h2d3bf25f42fb716cE+0x0): multiple definition of `_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$::clone::h2d3bf25f42fb716c'
2019-08-15T17:41:24.9442426Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17h2d3bf25f42fb716cE+0x0): first defined here
2019-08-15T17:41:24.9442899Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$::clone::hf7eacee7f5b97729':
2019-08-15T17:41:24.9443309Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17hf7eacee7f5b97729E+0x0): multiple definition of `_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$::clone::hf7eacee7f5b97729'
2019-08-15T17:41:24.9443721Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17hf7eacee7f5b97729E+0x0): first defined here
2019-08-15T17:41:24.9444099Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$::clone::h56fd2ce728c4a0c4':
2019-08-15T17:41:24.9444450Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$5clone17h56fd2ce728c4a0c4E+0x0): multiple definition of `_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$::clone::h56fd2ce728c4a0c4'
2019-08-15T17:41:24.9444875Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$5clone17h56fd2ce728c4a0c4E+0x0): first defined here
2019-08-15T17:41:24.9445741Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$::clone::h6bd3ab1021f0941b':
2019-08-15T17:41:24.9446240Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h6bd3ab1021f0941bE+0x0): multiple definition of `_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$::clone::h6bd3ab1021f0941b'
2019-08-15T17:41:24.9446769Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h6bd3ab1021f0941bE+0x0): first defined here
2019-08-15T17:41:24.9447243Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$::clone::h2235ccd7c25d950e':
2019-08-15T17:41:24.9447704Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17h2235ccd7c25d950eE+0x0): multiple definition of `_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$::clone::h2235ccd7c25d950e'
2019-08-15T17:41:24.9448253Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17h2235ccd7c25d950eE+0x0): first defined here
2019-08-15T17:41:24.9448700Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$::clone::h4b6e1c0b1090f1c6':
2019-08-15T17:41:24.9449928Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h4b6e1c0b1090f1c6E+0x0): multiple definition of `_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$::clone::h4b6e1c0b1090f1c6'
2019-08-15T17:41:24.9450721Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h4b6e1c0b1090f1c6E+0x0): first defined here
2019-08-15T17:41:24.9451049Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$::clone::h8ce49d7fe24aea62':
2019-08-15T17:41:24.9451408Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$5clone17h8ce49d7fe24aea62E+0x0): multiple definition of `_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$::clone::h8ce49d7fe24aea62'
2019-08-15T17:41:24.9451798Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$5clone17h8ce49d7fe24aea62E+0x0): first defined here
2019-08-15T17:41:24.9452138Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$::clone::hd6df610aef6e2918':
2019-08-15T17:41:24.9452466Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17hd6df610aef6e2918E+0x0): multiple definition of `_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$::clone::hd6df610aef6e2918'
2019-08-15T17:41:24.9452964Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17hd6df610aef6e2918E+0x0): first defined here
2019-08-15T17:41:24.9453293Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$::clone::h37d4df313f0d3a6d':
2019-08-15T17:41:24.9453642Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN57_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$5clone17h37d4df313f0d3a6dE+0x0): multiple definition of `_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$::clone::h37d4df313f0d3a6d'
2019-08-15T17:41:24.9454042Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$5clone17h37d4df313f0d3a6dE+0x0): first defined here
2019-08-15T17:41:24.9454386Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$::clone::h319f9f8f49136073':
2019-08-15T17:41:24.9454724Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h319f9f8f49136073E+0x0): multiple definition of `_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$::clone::h319f9f8f49136073'
2019-08-15T17:41:24.9455581Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h319f9f8f49136073E+0x0): first defined here
2019-08-15T17:41:24.9456134Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$::clone::hd5e4433c65aea665':
2019-08-15T17:41:24.9456654Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17hd5e4433c65aea665E+0x0): multiple definition of `_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$::clone::hd5e4433c65aea665'
2019-08-15T17:41:24.9457184Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17hd5e4433c65aea665E+0x0): first defined here
2019-08-15T17:41:24.9457670Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$::clone::h3a1cb7973604aa7c':
2019-08-15T17:41:24.9458134Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17h3a1cb7973604aa7cE+0x0): multiple definition of `_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$::clone::h3a1cb7973604aa7c'
2019-08-15T17:41:24.9458821Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17h3a1cb7973604aa7cE+0x0): first defined here
2019-08-15T17:41:24.9459293Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$::clone::hfa3796e093c0cf87':
2019-08-15T17:41:24.9459710Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17hfa3796e093c0cf87E+0x0): multiple definition of `_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$::clone::hfa3796e093c0cf87'
2019-08-15T17:41:24.9460181Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17hfa3796e093c0cf87E+0x0): first defined here
2019-08-15T17:41:24.9460569Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$::clone::h464cdfe8607b2196':
2019-08-15T17:41:24.9461140Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h464cdfe8607b2196E+0x0): multiple definition of `_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$::clone::h464cdfe8607b2196'
2019-08-15T17:41:24.9462175Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h464cdfe8607b2196E+0x0): first defined here
2019-08-15T17:41:24.9462787Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$::clone::hc13b5ac7d3e09b83':
2019-08-15T17:41:24.9463661Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$5clone17hc13b5ac7d3e09b83E+0x0): multiple definition of `_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$::clone::hc13b5ac7d3e09b83'
2019-08-15T17:41:24.9464134Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$5clone17hc13b5ac7d3e09b83E+0x0): first defined here
2019-08-15T17:41:24.9464519Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$::clone::h81b70c43366e7a2a':
2019-08-15T17:41:24.9464910Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h81b70c43366e7a2aE+0x0): multiple definition of `_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$::clone::h81b70c43366e7a2a'
2019-08-15T17:41:24.9465795Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h81b70c43366e7a2aE+0x0): first defined here
2019-08-15T17:41:24.9466276Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$::clone::hab38708faef80148':
2019-08-15T17:41:24.9466741Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17hab38708faef80148E+0x0): multiple definition of `_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$::clone::hab38708faef80148'
2019-08-15T17:41:24.9467427Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17hab38708faef80148E+0x0): first defined here
2019-08-15T17:41:24.9467883Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$::clone::h8bc19b5f05f0901d':
2019-08-15T17:41:24.9468365Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h8bc19b5f05f0901dE+0x0): multiple definition of `_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$::clone::h8bc19b5f05f0901d'
2019-08-15T17:41:24.9469108Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h8bc19b5f05f0901dE+0x0): first defined here
2019-08-15T17:41:24.9469568Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$::clone::hf797b7e40c65838c':
2019-08-15T17:41:24.9470030Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$5clone17hf797b7e40c65838cE+0x0): multiple definition of `_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$::clone::hf797b7e40c65838c'
2019-08-15T17:41:24.9470557Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$5clone17hf797b7e40c65838cE+0x0): first defined here
2019-08-15T17:41:24.9471780Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$::clone::h657ae1118b352aad':
2019-08-15T17:41:24.9472336Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17h657ae1118b352aadE+0x0): multiple definition of `_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$::clone::h657ae1118b352aad'
2019-08-15T17:41:24.9472767Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17h657ae1118b352aadE+0x0): first defined here
2019-08-15T17:41:24.9473147Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$::clone::h9ac1f644ed52bca2':
2019-08-15T17:41:24.9473508Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$5clone17h9ac1f644ed52bca2E+0x0): multiple definition of `_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$::clone::h9ac1f644ed52bca2'
2019-08-15T17:41:24.9473941Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$5clone17h9ac1f644ed52bca2E+0x0): first defined here
2019-08-15T17:41:24.9474371Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$::clone::h8c9cac8f2ca45eb7':
2019-08-15T17:41:24.9480789Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$5clone17h8c9cac8f2ca45eb7E+0x0): multiple definition of `_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$::clone::h8c9cac8f2ca45eb7'
2019-08-15T17:41:24.9481347Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$5clone17h8c9cac8f2ca45eb7E+0x0): first defined here
2019-08-15T17:41:24.9481698Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$::clone::hba83b6457ba96a9d':
2019-08-15T17:41:24.9482064Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17hba83b6457ba96a9dE+0x0): multiple definition of `_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$::clone::hba83b6457ba96a9d'
2019-08-15T17:41:24.9482458Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17hba83b6457ba96a9dE+0x0): first defined here
2019-08-15T17:41:24.9482812Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc8ffc6cddda037f':
2019-08-15T17:41:24.9483286Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc8ffc6cddda037fE+0x0): multiple definition of `_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc8ffc6cddda037f'
2019-08-15T17:41:24.9483722Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc8ffc6cddda037fE+0x0): first defined here
2019-08-15T17:41:24.9484074Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$::clone::he03072ea426998be':
2019-08-15T17:41:24.9484615Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17he03072ea426998beE+0x0): multiple definition of `_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$::clone::he03072ea426998be'
2019-08-15T17:41:24.9485418Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17he03072ea426998beE+0x0): first defined here
2019-08-15T17:41:24.9486147Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$::eq::hc847be027b7299e6':
2019-08-15T17:41:24.9486769Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN62_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$2eq17hc847be027b7299e6E+0x0): multiple definition of `_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$::eq::hc847be027b7299e6'
2019-08-15T17:41:24.9487290Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o):rustc_lint.eo11z9c2-cgu.10:(.text._ZN62_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$2eq17hc847be027b7299e6E+0x0): first defined here
2019-08-15T17:41:24.9487744Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc763300301e91f0':
2019-08-15T17:41:24.9488238Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc763300301e91f0E+0x0): multiple definition of `_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc763300301e91f0'
2019-08-15T17:41:24.9489024Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc763300301e91f0E+0x0): first defined here
2019-08-15T17:41:24.9489377Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$::clone::hf79c5c5c090f1856':
2019-08-15T17:41:24.9489718Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hf79c5c5c090f1856E+0x0): multiple definition of `_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$::clone::hf79c5c5c090f1856'
2019-08-15T17:41:24.9490137Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hf79c5c5c090f1856E+0x0): first defined here
2019-08-15T17:41:24.9490545Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$::clone::hc4a4bb7b01687475':
2019-08-15T17:41:24.9490919Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$5clone17hc4a4bb7b01687475E+0x0): multiple definition of `_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$::clone::hc4a4bb7b01687475'
2019-08-15T17:41:24.9491344Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$5clone17hc4a4bb7b01687475E+0x0): first defined here
2019-08-15T17:41:24.9491695Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$::clone::h7948d4049cac020a':
2019-08-15T17:41:24.9492044Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h7948d4049cac020aE+0x0): multiple definition of `_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$::clone::h7948d4049cac020a'
2019-08-15T17:41:24.9492453Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h7948d4049cac020aE+0x0): first defined here
2019-08-15T17:41:24.9492879Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$::clone::hafa3fec4dbe4ef36':
2019-08-15T17:41:24.9493241Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17hafa3fec4dbe4ef36E+0x0): multiple definition of `_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$::clone::hafa3fec4dbe4ef36'
2019-08-15T17:41:24.9493634Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17hafa3fec4dbe4ef36E+0x0): first defined here
2019-08-15T17:41:24.9493991Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$::clone::h60036ab162659d98':
2019-08-15T17:41:24.9494357Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h60036ab162659d98E+0x0): multiple definition of `_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$::clone::h60036ab162659d98'
2019-08-15T17:41:24.9494757Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h60036ab162659d98E+0x0): first defined here
2019-08-15T17:41:24.9495480Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$::clone::hfc6d21363c24b4f6':
2019-08-15T17:41:24.9497282Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN64_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$5clone17hfc6d21363c24b4f6E+0x0): multiple definition of `_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$::clone::hfc6d21363c24b4f6'
2019-08-15T17:41:24.9497927Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$5clone17hfc6d21363c24b4f6E+0x0): first defined here
2019-08-15T17:41:24.9498417Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$::clone::he7ae39b89981b0d1':
2019-08-15T17:41:24.9499168Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17he7ae39b89981b0d1E+0x0): multiple definition of `_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$::clone::he7ae39b89981b0d1'
2019-08-15T17:41:24.9499585Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17he7ae39b89981b0d1E+0x0): first defined here
2019-08-15T17:41:24.9499914Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$::clone::h86cbf6b2130f9de0':
2019-08-15T17:41:24.9500379Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h86cbf6b2130f9de0E+0x0): multiple definition of `_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$::clone::h86cbf6b2130f9de0'
2019-08-15T17:41:24.9500791Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h86cbf6b2130f9de0E+0x0): first defined here
2019-08-15T17:41:24.9501124Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$::clone::h17a5688fdaffdb67':
2019-08-15T17:41:24.9501494Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17h17a5688fdaffdb67E+0x0): multiple definition of `_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$::clone::h17a5688fdaffdb67'
2019-08-15T17:41:24.9501896Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17h17a5688fdaffdb67E+0x0): first defined here
2019-08-15T17:41:24.9502249Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$::clone::h7eebfa4f376eb15d':
2019-08-15T17:41:24.9502620Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN67_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$5clone17h7eebfa4f376eb15dE+0x0): multiple definition of `_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$::clone::h7eebfa4f376eb15d'
2019-08-15T17:41:24.9503076Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN67_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$5clone17h7eebfa4f376eb15dE+0x0): first defined here
2019-08-15T17:41:24.9503462Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$::clone::h369aa04e0a6d4f57':
2019-08-15T17:41:24.9503814Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17h369aa04e0a6d4f57E+0x0): multiple definition of `_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$::clone::h369aa04e0a6d4f57'
2019-08-15T17:41:24.9504243Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17h369aa04e0a6d4f57E+0x0): first defined here
2019-08-15T17:41:24.9504592Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$::clone::h46bb1d0328f119a8':
2019-08-15T17:41:24.9505087Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN64_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$5clone17h46bb1d0328f119a8E+0x0): multiple definition of `_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$::clone::h46bb1d0328f119a8'
2019-08-15T17:41:24.9506178Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN64_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$5clone17h46bb1d0328f119a8E+0x0): first defined here
2019-08-15T17:41:24.9506638Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$::clone::hf71f87b0dd79d485':
2019-08-15T17:41:24.9507128Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17hf71f87b0dd79d485E+0x0): multiple definition of `_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$::clone::hf71f87b0dd79d485'
2019-08-15T17:41:24.9507699Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17hf71f87b0dd79d485E+0x0): first defined here
2019-08-15T17:41:24.9508166Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$::clone::h26345023f52bea36':
2019-08-15T17:41:24.9508842Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN71_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$5clone17h26345023f52bea36E+0x0): multiple definition of `_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$::clone::h26345023f52bea36'
2019-08-15T17:41:24.9509271Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN71_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$5clone17h26345023f52bea36E+0x0): first defined here
2019-08-15T17:41:24.9509669Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$::clone::h7c1b0aa48e35fa89':
2019-08-15T17:41:24.9510065Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h7c1b0aa48e35fa89E+0x0): multiple definition of `_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$::clone::h7c1b0aa48e35fa89'
2019-08-15T17:41:24.9510470Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h7c1b0aa48e35fa89E+0x0): first defined here
2019-08-15T17:41:24.9510842Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50':
2019-08-15T17:41:24.9511211Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): multiple definition of `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50'
2019-08-15T17:41:24.9511615Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): first defined here
2019-08-15T17:41:24.9512052Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a':
2019-08-15T17:41:24.9512395Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): multiple definition of `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a'
2019-08-15T17:41:24.9512805Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): first defined here
2019-08-15T17:41:24.9513163Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$::clone::h981793ca0380598e':
2019-08-15T17:41:24.9513515Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN64_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$5clone17h981793ca0380598eE+0x0): multiple definition of `_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$::clone::h981793ca0380598e'
2019-08-15T17:41:24.9513929Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN64_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$5clone17h981793ca0380598eE+0x0): first defined here
2019-08-15T17:41:24.9514268Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T17:41:24.9514685Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841'
2019-08-15T17:41:24.9515121Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T17:41:24.9515467Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$::clone::h1a06559b6eef647e':
2019-08-15T17:41:24.9516247Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN67_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$5clone17h1a06559b6eef647eE+0x0): multiple definition of `_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$::clone::h1a06559b6eef647e'
2019-08-15T17:41:24.9516804Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T17:41:24.9517272Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565':
2019-08-15T17:41:24.9517877Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565'
2019-08-15T17:41:24.9518421Z           /tmp/rustch3FYAr/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o):rustc_interface.51du1beo-cgu.14:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): first defined here
2019-08-15T17:41:24.9518888Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::ne::h7d0d3d988fdeabb8':
2019-08-15T17:41:24.9519489Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2ne17h7d0d3d988fdeabb8E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::ne::h7d0d3d988fdeabb8'
2019-08-15T17:41:24.9520140Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2ne17h7d0d3d988fdeabb8E+0x0): first defined here
2019-08-15T17:41:24.9520758Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$::clone::h27a2cfc534fd3a5c':
2019-08-15T17:41:24.9521652Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN69_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$5clone17h27a2cfc534fd3a5cE+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$::clone::h27a2cfc534fd3a5c'
2019-08-15T17:41:24.9522155Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$5clone17h27a2cfc534fd3a5cE+0x0): first defined here
2019-08-15T17:41:24.9522526Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286':
2019-08-15T17:41:24.9522895Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286'
2019-08-15T17:41:24.9523492Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): first defined here
2019-08-15T17:41:24.9524265Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4':
2019-08-15T17:41:24.9524658Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): multiple definition of `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4'
2019-08-15T17:41:24.9525560Z           /tmp/rustch3FYAr/libenv_logger-39812d84bbfe2b11.rlib(env_logger-39812d84bbfe2b11.env_logger.agm6r3km-cgu.15.rcgu.o):env_logger.agm6r3km-cgu.15:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): first defined here
2019-08-15T17:41:24.9526045Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$::gt::hbc62750dd2c847bf':
2019-08-15T17:41:24.9526512Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN61_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$2gt17hbc62750dd2c847bfE+0x0): multiple definition of `_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$::gt::hbc62750dd2c847bf'
2019-08-15T17:41:24.9527063Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN61_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$2gt17hbc62750dd2c847bfE+0x0): first defined here
2019-08-15T17:41:24.9527535Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$::clone::h64e1b3829bdeb7ce':
2019-08-15T17:41:24.9528026Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): multiple definition of `_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$::clone::h64e1b3829bdeb7ce'
2019-08-15T17:41:24.9528723Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T17:41:24.9529329Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383':
2019-08-15T17:41:24.9529720Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383'
2019-08-15T17:41:24.9530115Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): first defined here
2019-08-15T17:41:24.9530471Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$::clone::hfca5f67e5bdde432':
2019-08-15T17:41:24.9530822Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN67_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$5clone17hfca5f67e5bdde432E+0x0): multiple definition of `_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$::clone::hfca5f67e5bdde432'
2019-08-15T17:41:24.9531239Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN67_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$5clone17hfca5f67e5bdde432E+0x0): first defined here
2019-08-15T17:41:24.9531678Z           /tmp/rustch3FYAr/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T17:41:24.9532036Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): multiple definition of `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9'
2019-08-15T17:41:24.9532458Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T17:41:24.9532790Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$rustc..mir..Promoted$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8c0c05d1ff467785':
2019-08-15T17:41:24.9533162Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN61_$LT$rustc..mir..Promoted$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8c0c05d1ff467785E+0x0): multiple definition of `_$LT$rustc..mir..Promoted$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8c0c05d1ff467785'
2019-08-15T17:41:24.9533537Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.11.rcgu.o):rustc_lint.eo11z9c2-cgu.11:(.text._ZN61_$LT$rustc..mir..Promoted$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8c0c05d1ff467785E+0x0): first defined here
2019-08-15T17:41:24.9533872Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$::clone::h6db92323c5933253':
2019-08-15T17:41:24.9534248Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN68_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$5clone17h6db92323c5933253E+0x0): multiple definition of `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$::clone::h6db92323c5933253'
2019-08-15T17:41:24.9534669Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.13.rcgu.o):rustc_lint.eo11z9c2-cgu.13:(.text._ZN68_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$5clone17h6db92323c5933253E+0x0): first defined here
2019-08-15T17:41:24.9535171Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb22b3fbe986a9959':
2019-08-15T17:41:24.9535855Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb22b3fbe986a9959E+0x0): multiple definition of `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb22b3fbe986a9959'
2019-08-15T17:41:24.9536401Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.13.rcgu.o):rustc_lint.eo11z9c2-cgu.13:(.text._ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb22b3fbe986a9959E+0x0): first defined here
2019-08-15T17:41:24.9536880Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T17:41:24.9537372Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): multiple definition of `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9'
2019-08-15T17:41:24.9538083Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T17:41:24.9538711Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75':
2019-08-15T17:41:24.9539260Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75'
2019-08-15T17:41:24.9539679Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): first defined here
2019-08-15T17:41:24.9540040Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825':
2019-08-15T17:41:24.9540413Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825'
2019-08-15T17:41:24.9540827Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): first defined here
2019-08-15T17:41:24.9541241Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$::cmp::h20bb7007c256a06c':
2019-08-15T17:41:24.9541611Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN60_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$3cmp17h20bb7007c256a06cE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$::cmp::h20bb7007c256a06c'
2019-08-15T17:41:24.9541999Z           /tmp/rustch3FYAr/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o):rustc_lint.eo11z9c2-cgu.5:(.text._ZN60_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$3cmp17h20bb7007c256a06cE+0x0): first defined here
2019-08-15T17:41:24.9542347Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a':
2019-08-15T17:41:24.9542693Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): multiple definition of `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a'
2019-08-15T17:41:24.9543098Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): first defined here
2019-08-15T17:41:24.9543529Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416':
2019-08-15T17:41:24.9543897Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416'
2019-08-15T17:41:24.9544293Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): first defined here
2019-08-15T17:41:24.9544653Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T17:41:24.9545022Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841'
2019-08-15T17:41:24.9545888Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T17:41:24.9546386Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e':
2019-08-15T17:41:24.9546947Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e'
2019-08-15T17:41:24.9547548Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): first defined here
2019-08-15T17:41:24.9548029Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1':
2019-08-15T17:41:24.9548528Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1'
2019-08-15T17:41:24.9549306Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): first defined here
2019-08-15T17:41:24.9549681Z           /tmp/rustch3FYAr/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8634e49eeed33de8':
---
2019-08-15T17:41:25.1163717Z == clock drift check ==
2019-08-15T17:41:25.1163770Z   local time: Thu Aug 15 17:41:24 UTC 2019
2019-08-15T17:41:25.2630890Z   network time: Thu, 15 Aug 2019 17:41:25 GMT
2019-08-15T17:41:25.2631746Z == end clock drift check ==
2019-08-15T17:41:26.3257159Z ##[error]Bash exited with code '1'.
2019-08-15T17:41:26.3301570Z ##[section]Starting: Checkout
2019-08-15T17:41:26.3302985Z ==============================================================================
2019-08-15T17:41:26.3303046Z Task         : Get sources
2019-08-15T17:41:26.3303084Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.

I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact @TimNN. (Feature Requests)

@bors
Copy link
Contributor

bors commented Aug 15, 2019

💔 Test failed - checks-azure

@rust-highfive
Copy link
Collaborator

The job dist-arm-linux of your PR failed (raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem.

Click to expand the log.
2019-08-15T17:16:59.5025123Z do so (now or later) by using -b with the checkout command again. Example:
2019-08-15T17:16:59.5025558Z 
2019-08-15T17:16:59.5026392Z   git checkout -b <new-branch-name>
2019-08-15T17:16:59.5026476Z 
2019-08-15T17:16:59.5026775Z HEAD is now at c8b62dff2 Auto merge of #63607 - Centril:rollup-yry7nsw, r=Centril
2019-08-15T17:16:59.5072386Z ##[section]Starting: Collect CPU-usage statistics in the background
2019-08-15T17:16:59.5075968Z ==============================================================================
2019-08-15T17:16:59.5076059Z Task         : Bash
2019-08-15T17:16:59.5076118Z Description  : Run a Bash script on macOS, Linux, or Windows
---
2019-08-15T17:40:01.1227350Z [RUSTC-TIMING] rustc_save_analysis test:false 40.788
2019-08-15T17:40:01.1262271Z    Compiling rustc_interface v0.0.0 (/checkout/src/librustc_interface)
2019-08-15T17:40:23.8015221Z [RUSTC-TIMING] rustc_mir test:false 310.755
2019-08-15T17:40:54.8954029Z [RUSTC-TIMING] rustc_interface test:false 53.764
2019-08-15T17:41:23.1839171Z error: linking with `cc` failed: exit code: 1
2019-08-15T17:41:23.1839788Z   |
2019-08-15T17:41:23.1858847Z   = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.0.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.1.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.10.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.11.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.12.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.2.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.3.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.4.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.6.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_driver-587d63cb4d69e0ac.so" "-Wl,--version-script=/tmp/rustcQqIM4r/list" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.1cdq855nmqwouecp.rcgu.o" "-Wl,-zrelro" "-Wl,-znow" "-Wl,-O1" "-nodefaultlibs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/release/deps" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/build/backtrace-sys-ce86f1e67f7c5c32/out" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/build/miniz-sys-811001ae855212fd/out" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libenv_logger-39812d84bbfe2b11.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libhumantime-d1a9d86e783663fa.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libquick_error-b52ae6e62fe18a00.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_resolve-5d839a4a3ebae4cb.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_privacy-59043759bcab22a5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_typeck-1aa90bac05422510.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_plugin-bc8a756468480c8d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_passes-c3bfdec084009411.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_mir-05a8bc33b2ff82e3.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/liblog_settings-2620b484081ec8f2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libeither-be66c1a9963b273c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_codegen_ssa-9a827dbfcc48cb34.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libtempfile-7dcc5500a694e84f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libremove_dir_all-a10b98c02f91914a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libcc-580cb3ec679a1ef0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_incremental-3951ffb88a6eb90d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_ast_borrowck-2132ee25856e6fb0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_save_analysis-ee321ecee1325abb.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libserde_json-f180caae537f064f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libryu-17527a943b47993b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libitoa-cafbf9ae61da85d2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_codegen_utils-3a00abcae2cd3117.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libpunycode-bc98388f5faa9996.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_metadata-b11bd965ad29927b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libflate2-31c9dbe4de46ec52.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libminiz_sys-829f35f627be716a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libcrc32fast-df4710f26ff3874f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc-08e00d65ee2b464b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libnum_cpus-d9d9e3d323e05da4.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libmeasureme-fc872d44030f5d93.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libmemmap-1c9c5e21f22b4f63.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libchalk_engine-4d23e955653ea77c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libchalk_macros-1cf2838505f165dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/liblazy_static-2804eceb8314c34d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libfmt_macros-f9c512bf542770a2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_fs_util-048ad9cdb9a5276a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_apfloat-648ce9609f2f81ba.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libbacktrace-2f8d68a291f838c5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libbacktrace_sys-a883b0d3ea617415.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_demangle-f6688a0a1c622b3f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libpolonius_engine-852b1ffcf53b21de.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libdatafrog-20da5796e45c2975.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libparking_lot-31476845b241d1d5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libparking_lot_core-43382fa791fab8f0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librand-27220a546062b8dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librand_xorshift-5881699d0271bbca.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librand_pcg-d7ba7a93367d81dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librand_hc-284c64edcaa9062e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librand_chacha-bfd57a2d41977c46.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librand_isaac-8a318270c401df3b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librand_core-1de73f1b5ed833b6.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/liblock_api-e235dde0fbca8f1b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libowning_ref-78f158d03583a646.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libscopeguard-00ce26af83a6ea4d.rlib" "-Wl,--no-whole-archive" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bdynamic" "-ltest-36088b3e8acaa93c" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-lterm-e158702540af0110" "-Wl,-Bstatic" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libsyntax-0080eac368865e5b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_lexer-a01a58b026705edc.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_target-cb594209510cba11.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_errors-8f589586108b76d1.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libatty-8ca53ff70731db4a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libannotate_snippets-5f249de6bb711b79.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libsyntax_pos-11641ede3a552b36.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libunicode_width-5402e80272479668.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libarena-e8adb4266d86b522.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libtermcolor-fd219321841f006e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libproc_macro-ca397c4659406be4.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_data_structures-8448c0e13624c15f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libena-093aaf0cc374bff5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libstable_deref_trait-646a1f04f6a5aa32.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libgraphviz-ba0ef3f480884f4f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libjobserver-07e1d0caa31c449b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/liblibc-29f03ed69e612165.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librustc_hash-677da430504940be.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libbyteorder-c65025eaa21b723f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libserialize-aaf3e4552e45992e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libindexmap-0cc18a36b459b67c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libsmallvec-6ed313b2cf4fd8b6.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libscoped_tls-3dc09d8ab059989c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/liblazy_static-4c7ff80308c4e52f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libbitflags-7b5c97f3018774b1.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librls_data-9c386b65968abef2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/librls_span-00e5850e0d24133e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libserde-c1b899e8f871bdf2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/liblog-6dfac0fdfe7541fc.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcQqIM4r/libcfg_if-cd67395bafbba823.rlib" "-Wl,--no-whole-archive" "-Wl,--start-group" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-sysroot/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bdynamic" "-lstd-97be49e9986de672" "-Wl,--end-group" "-Wl,-Bstatic" "/tmp/rustcQqIM4r/libcompiler_builtins-5f7546ebef3d3bcd.rlib" "-Wl,-Bdynamic" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" "-shared" "-Wl,-rpath,$ORIGIN/../lib"
2019-08-15T17:41:23.1864976Z   = note: /tmp/rustcQqIM4r/libenv_logger-39812d84bbfe2b11.rlib(env_logger-39812d84bbfe2b11.env_logger.agm6r3km-cgu.12.rcgu.o): In function `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383':
2019-08-15T17:41:23.1932845Z           env_logger.agm6r3km-cgu.12:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383'
2019-08-15T17:41:23.1933558Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): first defined here
2019-08-15T17:41:23.1934526Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.12.rcgu.o): In function `_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$::clone::h778ae7abe68244c3':
2019-08-15T17:41:23.1935178Z           rustc_interface.51du1beo-cgu.12:(.text._ZN59_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$5clone17h778ae7abe68244c3E+0x0): multiple definition of `_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$::clone::h778ae7abe68244c3'
2019-08-15T17:41:23.1935857Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN59_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$5clone17h778ae7abe68244c3E+0x0): first defined here
2019-08-15T17:41:23.1936522Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.12.rcgu.o): In function `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h787b191471aef5f9':
2019-08-15T17:41:23.1937185Z           rustc_interface.51du1beo-cgu.12:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): multiple definition of `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h787b191471aef5f9'
2019-08-15T17:41:23.1937973Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): first defined here
2019-08-15T17:41:23.1938604Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.12.rcgu.o): In function `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h787b191471aef5f9':
2019-08-15T17:41:23.1939090Z           rustc_interface.51du1beo-cgu.12:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): multiple definition of `_$LT$rustc..dep_graph..serialized..SerializedDepNodeIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb4c35295eb208a25'
2019-08-15T17:41:23.1939622Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): first defined here
2019-08-15T17:41:23.1940098Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416':
2019-08-15T17:41:23.1940582Z           rustc_interface.51du1beo-cgu.14:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416'
2019-08-15T17:41:23.1941111Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): first defined here
2019-08-15T17:41:23.1941667Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$::clone::h981793ca0380598e':
2019-08-15T17:41:23.1942158Z           rustc_interface.51du1beo-cgu.14:(.text._ZN64_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$5clone17h981793ca0380598eE+0x0): multiple definition of `_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$::clone::h981793ca0380598e'
2019-08-15T17:41:23.1942688Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN64_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$5clone17h981793ca0380598eE+0x0): first defined here
2019-08-15T17:41:23.1943169Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T17:41:23.1943637Z           rustc_interface.51du1beo-cgu.14:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841'
2019-08-15T17:41:23.1944605Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T17:41:23.1945367Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e':
2019-08-15T17:41:23.1946001Z           rustc_interface.51du1beo-cgu.14:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e'
2019-08-15T17:41:23.1946693Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): first defined here
2019-08-15T17:41:23.1947304Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383':
2019-08-15T17:41:23.1947962Z           rustc_interface.51du1beo-cgu.14:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383'
2019-08-15T17:41:23.1948455Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): first defined here
2019-08-15T17:41:23.1948910Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h627aa6a8c9f7fc49':
2019-08-15T17:41:23.1949443Z           rustc_interface.51du1beo-cgu.14:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h627aa6a8c9f7fc49E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h627aa6a8c9f7fc49'
2019-08-15T17:41:23.1950001Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h627aa6a8c9f7fc49E+0x0): first defined here
2019-08-15T17:41:23.1950454Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$::clone::hfca5f67e5bdde432':
2019-08-15T17:41:23.1950927Z           rustc_interface.51du1beo-cgu.14:(.text._ZN67_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$5clone17hfca5f67e5bdde432E+0x0): multiple definition of `_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$::clone::hfca5f67e5bdde432'
2019-08-15T17:41:23.1951428Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN67_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$5clone17hfca5f67e5bdde432E+0x0): first defined here
2019-08-15T17:41:23.1951882Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1':
2019-08-15T17:41:23.1952463Z           rustc_interface.51du1beo-cgu.14:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1'
2019-08-15T17:41:23.1953019Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): first defined here
2019-08-15T17:41:23.1953483Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565':
2019-08-15T17:41:23.1954283Z           rustc_interface.51du1beo-cgu.14:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8634e49eeed33de8'
2019-08-15T17:41:23.1955038Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8634e49eeed33de8E+0x0): first defined here
2019-08-15T17:41:23.1955695Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75':
2019-08-15T17:41:23.1956349Z           rustc_interface.51du1beo-cgu.14:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75'
2019-08-15T17:41:23.1957197Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): first defined here
2019-08-15T17:41:23.1957916Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825':
2019-08-15T17:41:23.1958374Z           rustc_interface.51du1beo-cgu.14:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825'
2019-08-15T17:41:23.1958916Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): first defined here
2019-08-15T17:41:23.1959368Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$core..any..TypeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h67bf702b545a74f8':
2019-08-15T17:41:23.1959797Z           rustc_interface.51du1beo-cgu.15:(.text._ZN58_$LT$core..any..TypeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h67bf702b545a74f8E+0x0): multiple definition of `_$LT$core..any..TypeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h67bf702b545a74f8'
2019-08-15T17:41:23.1960408Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN58_$LT$core..any..TypeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h67bf702b545a74f8E+0x0): first defined here
2019-08-15T17:41:23.1960838Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::hda2173d9314c699d':
2019-08-15T17:41:23.1961272Z           rustc_interface.51du1beo-cgu.15:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17hda2173d9314c699dE+0x0): multiple definition of `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::hda2173d9314c699d'
2019-08-15T17:41:23.1961785Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17hda2173d9314c699dE+0x0): first defined here
2019-08-15T17:41:23.2016761Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a':
2019-08-15T17:41:23.2017689Z           rustc_interface.51du1beo-cgu.15:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): multiple definition of `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a'
2019-08-15T17:41:23.2018570Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): first defined here
2019-08-15T17:41:23.2019299Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$::clone::h46bb1d0328f119a8':
2019-08-15T17:41:23.2019924Z           rustc_interface.51du1beo-cgu.15:(.text._ZN64_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$5clone17h46bb1d0328f119a8E+0x0): multiple definition of `_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$::clone::h46bb1d0328f119a8'
2019-08-15T17:41:23.2020439Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN64_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$5clone17h46bb1d0328f119a8E+0x0): first defined here
2019-08-15T17:41:23.2020916Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$::clone::h64e1b3829bdeb7ce':
2019-08-15T17:41:23.2021368Z           rustc_interface.51du1beo-cgu.15:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): multiple definition of `_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$::clone::h64e1b3829bdeb7ce'
2019-08-15T17:41:23.2021874Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T17:41:23.2022444Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$::clone::h4b54706ce65acace':
2019-08-15T17:41:23.2022886Z           rustc_interface.51du1beo-cgu.15:(.text._ZN65_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$5clone17h4b54706ce65acaceE+0x0): multiple definition of `_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$::clone::h4b54706ce65acace'
2019-08-15T17:41:23.2023398Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN65_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$5clone17h4b54706ce65acaceE+0x0): first defined here
2019-08-15T17:41:23.2023866Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$::clone::hf71f87b0dd79d485':
2019-08-15T17:41:23.2024897Z           rustc_interface.51du1beo-cgu.15:(.text._ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17hf71f87b0dd79d485E+0x0): multiple definition of `_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$::clone::hf71f87b0dd79d485'
2019-08-15T17:41:23.2025633Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17hf71f87b0dd79d485E+0x0): first defined here
2019-08-15T17:41:23.2026387Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T17:41:23.2027093Z           rustc_interface.51du1beo-cgu.15:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): multiple definition of `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9'
2019-08-15T17:41:23.2027870Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T17:41:23.2028339Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$::clone::h26345023f52bea36':
2019-08-15T17:41:23.2028814Z           rustc_interface.51du1beo-cgu.15:(.text._ZN71_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$5clone17h26345023f52bea36E+0x0): multiple definition of `_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$::clone::h26345023f52bea36'
2019-08-15T17:41:23.2029333Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN71_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$5clone17h26345023f52bea36E+0x0): first defined here
2019-08-15T17:41:23.2029772Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$::clone::h7c1b0aa48e35fa89':
2019-08-15T17:41:23.2030377Z           rustc_interface.51du1beo-cgu.15:(.text._ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h7c1b0aa48e35fa89E+0x0): multiple definition of `_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$::clone::h7c1b0aa48e35fa89'
2019-08-15T17:41:23.2030922Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h7c1b0aa48e35fa89E+0x0): first defined here
2019-08-15T17:41:23.2031381Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$::clone::ha7af95504ad1d484':
2019-08-15T17:41:23.2031844Z           rustc_interface.51du1beo-cgu.4:(.text._ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17ha7af95504ad1d484E+0x0): multiple definition of `_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$::clone::ha7af95504ad1d484'
2019-08-15T17:41:23.2032342Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17ha7af95504ad1d484E+0x0): first defined here
2019-08-15T17:41:23.2032807Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$::clone::h2d3bf25f42fb716c':
2019-08-15T17:41:23.2033334Z           rustc_interface.51du1beo-cgu.4:(.text._ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17h2d3bf25f42fb716cE+0x0): multiple definition of `_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$::clone::h2d3bf25f42fb716c'
2019-08-15T17:41:23.2033893Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17h2d3bf25f42fb716cE+0x0): first defined here
2019-08-15T17:41:23.2034827Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$::clone::hf7eacee7f5b97729':
2019-08-15T17:41:23.2035424Z           rustc_interface.51du1beo-cgu.4:(.text._ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17hf7eacee7f5b97729E+0x0): multiple definition of `_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$::clone::hf7eacee7f5b97729'
2019-08-15T17:41:23.2036129Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17hf7eacee7f5b97729E+0x0): first defined here
2019-08-15T17:41:23.2051750Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$::clone::h56fd2ce728c4a0c4':
2019-08-15T17:41:23.2052214Z           rustc_interface.51du1beo-cgu.4:(.text._ZN55_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$5clone17h56fd2ce728c4a0c4E+0x0): multiple definition of `_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$::clone::h56fd2ce728c4a0c4'
2019-08-15T17:41:23.2052898Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$5clone17h56fd2ce728c4a0c4E+0x0): first defined here
2019-08-15T17:41:23.2053347Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$::clone::h6bd3ab1021f0941b':
2019-08-15T17:41:23.2053772Z           rustc_interface.51du1beo-cgu.4:(.text._ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h6bd3ab1021f0941bE+0x0): multiple definition of `_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$::clone::h6bd3ab1021f0941b'
2019-08-15T17:41:23.2054800Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h6bd3ab1021f0941bE+0x0): first defined here
2019-08-15T17:41:23.2055413Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$::clone::h2235ccd7c25d950e':
2019-08-15T17:41:23.2056000Z           rustc_interface.51du1beo-cgu.4:(.text._ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17h2235ccd7c25d950eE+0x0): multiple definition of `_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$::clone::h2235ccd7c25d950e'
2019-08-15T17:41:23.2056758Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17h2235ccd7c25d950eE+0x0): first defined here
2019-08-15T17:41:23.2057572Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$::clone::h4b6e1c0b1090f1c6':
2019-08-15T17:41:23.2058010Z           rustc_interface.51du1beo-cgu.4:(.text._ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h4b6e1c0b1090f1c6E+0x0): multiple definition of `_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$::clone::h4b6e1c0b1090f1c6'
2019-08-15T17:41:23.2058506Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h4b6e1c0b1090f1c6E+0x0): first defined here
2019-08-15T17:41:23.2058961Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$::clone::h8ce49d7fe24aea62':
2019-08-15T17:41:23.2059381Z           rustc_interface.51du1beo-cgu.4:(.text._ZN56_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$5clone17h8ce49d7fe24aea62E+0x0): multiple definition of `_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$::clone::h8ce49d7fe24aea62'
2019-08-15T17:41:23.2059875Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$5clone17h8ce49d7fe24aea62E+0x0): first defined here
2019-08-15T17:41:23.2060418Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$::clone::hd6df610aef6e2918':
2019-08-15T17:41:23.2060836Z           rustc_interface.51du1beo-cgu.4:(.text._ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17hd6df610aef6e2918E+0x0): multiple definition of `_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$::clone::hd6df610aef6e2918'
2019-08-15T17:41:23.2061325Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17hd6df610aef6e2918E+0x0): first defined here
2019-08-15T17:41:23.2061764Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$::clone::h37d4df313f0d3a6d':
2019-08-15T17:41:23.2062226Z           rustc_interface.51du1beo-cgu.4:(.text._ZN57_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$5clone17h37d4df313f0d3a6dE+0x0): multiple definition of `_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$::clone::h37d4df313f0d3a6d'
2019-08-15T17:41:23.2062748Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$5clone17h37d4df313f0d3a6dE+0x0): first defined here
2019-08-15T17:41:23.2063205Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$::clone::h319f9f8f49136073':
2019-08-15T17:41:23.2063733Z           rustc_interface.51du1beo-cgu.4:(.text._ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h319f9f8f49136073E+0x0): multiple definition of `_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$::clone::h319f9f8f49136073'
2019-08-15T17:41:23.2064823Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h319f9f8f49136073E+0x0): first defined here
2019-08-15T17:41:23.2065424Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$::clone::hd5e4433c65aea665':
2019-08-15T17:41:23.2066087Z           rustc_interface.51du1beo-cgu.4:(.text._ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17hd5e4433c65aea665E+0x0): multiple definition of `_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$::clone::hd5e4433c65aea665'
2019-08-15T17:41:23.2066784Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17hd5e4433c65aea665E+0x0): first defined here
2019-08-15T17:41:23.2067388Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$::clone::h3a1cb7973604aa7c':
2019-08-15T17:41:23.2068188Z           rustc_interface.51du1beo-cgu.4:(.text._ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17h3a1cb7973604aa7cE+0x0): multiple definition of `_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$::clone::h3a1cb7973604aa7c'
2019-08-15T17:41:23.2068810Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17h3a1cb7973604aa7cE+0x0): first defined here
2019-08-15T17:41:23.2069256Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$::clone::hfa3796e093c0cf87':
2019-08-15T17:41:23.2069677Z           rustc_interface.51du1beo-cgu.4:(.text._ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17hfa3796e093c0cf87E+0x0): multiple definition of `_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$::clone::hfa3796e093c0cf87'
2019-08-15T17:41:23.2070190Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17hfa3796e093c0cf87E+0x0): first defined here
2019-08-15T17:41:23.2070636Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$::clone::h464cdfe8607b2196':
2019-08-15T17:41:23.2071092Z           rustc_interface.51du1beo-cgu.4:(.text._ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h464cdfe8607b2196E+0x0): multiple definition of `_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$::clone::h464cdfe8607b2196'
2019-08-15T17:41:23.2071676Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h464cdfe8607b2196E+0x0): first defined here
2019-08-15T17:41:23.2072154Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$::clone::hc13b5ac7d3e09b83':
2019-08-15T17:41:23.2072610Z           rustc_interface.51du1beo-cgu.4:(.text._ZN60_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$5clone17hc13b5ac7d3e09b83E+0x0): multiple definition of `_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$::clone::hc13b5ac7d3e09b83'
2019-08-15T17:41:23.2073131Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$5clone17hc13b5ac7d3e09b83E+0x0): first defined here
2019-08-15T17:41:23.2073599Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$::clone::h81b70c43366e7a2a':
2019-08-15T17:41:23.2074408Z           rustc_interface.51du1beo-cgu.4:(.text._ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h81b70c43366e7a2aE+0x0): multiple definition of `_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$::clone::h81b70c43366e7a2a'
2019-08-15T17:41:23.2075119Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h81b70c43366e7a2aE+0x0): first defined here
2019-08-15T17:41:23.2075865Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$::clone::hab38708faef80148':
2019-08-15T17:41:23.2076468Z           rustc_interface.51du1beo-cgu.4:(.text._ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17hab38708faef80148E+0x0): multiple definition of `_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$::clone::hab38708faef80148'
2019-08-15T17:41:23.2077154Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17hab38708faef80148E+0x0): first defined here
2019-08-15T17:41:23.2077857Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$::clone::h8bc19b5f05f0901d':
2019-08-15T17:41:23.2078283Z           rustc_interface.51du1beo-cgu.4:(.text._ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h8bc19b5f05f0901dE+0x0): multiple definition of `_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$::clone::h8bc19b5f05f0901d'
2019-08-15T17:41:23.2078785Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h8bc19b5f05f0901dE+0x0): first defined here
2019-08-15T17:41:23.2079484Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$::clone::hf797b7e40c65838c':
2019-08-15T17:41:23.2080166Z           rustc_interface.51du1beo-cgu.4:(.text._ZN60_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$5clone17hf797b7e40c65838cE+0x0): multiple definition of `_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$::clone::hf797b7e40c65838c'
2019-08-15T17:41:23.2080895Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$5clone17hf797b7e40c65838cE+0x0): first defined here
2019-08-15T17:41:23.2081393Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$::clone::h657ae1118b352aad':
2019-08-15T17:41:23.2081888Z           rustc_interface.51du1beo-cgu.4:(.text._ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17h657ae1118b352aadE+0x0): multiple definition of `_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$::clone::h657ae1118b352aad'
2019-08-15T17:41:23.2082715Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17h657ae1118b352aadE+0x0): first defined here
2019-08-15T17:41:23.2083224Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$::clone::h9ac1f644ed52bca2':
2019-08-15T17:41:23.2084581Z           rustc_interface.51du1beo-cgu.4:(.text._ZN61_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$5clone17h9ac1f644ed52bca2E+0x0): multiple definition of `_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$::clone::h9ac1f644ed52bca2'
2019-08-15T17:41:23.2085287Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$5clone17h9ac1f644ed52bca2E+0x0): first defined here
2019-08-15T17:41:23.2085877Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$::clone::h8c9cac8f2ca45eb7':
2019-08-15T17:41:23.2086498Z           rustc_interface.51du1beo-cgu.4:(.text._ZN61_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$5clone17h8c9cac8f2ca45eb7E+0x0): multiple definition of `_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$::clone::h8c9cac8f2ca45eb7'
2019-08-15T17:41:23.2087183Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$5clone17h8c9cac8f2ca45eb7E+0x0): first defined here
2019-08-15T17:41:23.2088043Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$::clone::hba83b6457ba96a9d':
2019-08-15T17:41:23.2088591Z           rustc_interface.51du1beo-cgu.4:(.text._ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17hba83b6457ba96a9dE+0x0): multiple definition of `_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$::clone::hba83b6457ba96a9d'
2019-08-15T17:41:23.2089151Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17hba83b6457ba96a9dE+0x0): first defined here
2019-08-15T17:41:23.2089622Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc8ffc6cddda037f':
2019-08-15T17:41:23.2090081Z           rustc_interface.51du1beo-cgu.4:(.text._ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc8ffc6cddda037fE+0x0): multiple definition of `_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc8ffc6cddda037f'
2019-08-15T17:41:23.2090797Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc8ffc6cddda037fE+0x0): first defined here
2019-08-15T17:41:23.2091244Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$::clone::he03072ea426998be':
2019-08-15T17:41:23.2091672Z           rustc_interface.51du1beo-cgu.4:(.text._ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17he03072ea426998beE+0x0): multiple definition of `_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$::clone::he03072ea426998be'
2019-08-15T17:41:23.2092274Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17he03072ea426998beE+0x0): first defined here
2019-08-15T17:41:23.2092726Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc763300301e91f0':
2019-08-15T17:41:23.2093167Z           rustc_interface.51du1beo-cgu.4:(.text._ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc763300301e91f0E+0x0): multiple definition of `_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc763300301e91f0'
2019-08-15T17:41:23.2093687Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc763300301e91f0E+0x0): first defined here
2019-08-15T17:41:23.2094537Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$::clone::hf79c5c5c090f1856':
2019-08-15T17:41:23.2095161Z           rustc_interface.51du1beo-cgu.4:(.text._ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hf79c5c5c090f1856E+0x0): multiple definition of `_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$::clone::hf79c5c5c090f1856'
2019-08-15T17:41:23.2095947Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hf79c5c5c090f1856E+0x0): first defined here
2019-08-15T17:41:23.2096609Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$::clone::hc4a4bb7b01687475':
2019-08-15T17:41:23.2097220Z           rustc_interface.51du1beo-cgu.4:(.text._ZN63_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$5clone17hc4a4bb7b01687475E+0x0): multiple definition of `_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$::clone::hc4a4bb7b01687475'
2019-08-15T17:41:23.2097926Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$5clone17hc4a4bb7b01687475E+0x0): first defined here
2019-08-15T17:41:23.2098385Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$::clone::h7948d4049cac020a':
2019-08-15T17:41:23.2098837Z           rustc_interface.51du1beo-cgu.4:(.text._ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h7948d4049cac020aE+0x0): multiple definition of `_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$::clone::h7948d4049cac020a'
2019-08-15T17:41:23.2099341Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h7948d4049cac020aE+0x0): first defined here
2019-08-15T17:41:23.2099882Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$::clone::hafa3fec4dbe4ef36':
2019-08-15T17:41:23.2100331Z           rustc_interface.51du1beo-cgu.4:(.text._ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17hafa3fec4dbe4ef36E+0x0): multiple definition of `_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$::clone::hafa3fec4dbe4ef36'
2019-08-15T17:41:23.2100840Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17hafa3fec4dbe4ef36E+0x0): first defined here
2019-08-15T17:41:23.2101309Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$::clone::h60036ab162659d98':
2019-08-15T17:41:23.2101764Z           rustc_interface.51du1beo-cgu.4:(.text._ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h60036ab162659d98E+0x0): multiple definition of `_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$::clone::h60036ab162659d98'
2019-08-15T17:41:23.2102267Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h60036ab162659d98E+0x0): first defined here
2019-08-15T17:41:23.2102780Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$::clone::hfc6d21363c24b4f6':
2019-08-15T17:41:23.2103246Z           rustc_interface.51du1beo-cgu.4:(.text._ZN64_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$5clone17hfc6d21363c24b4f6E+0x0): multiple definition of `_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$::clone::hfc6d21363c24b4f6'
2019-08-15T17:41:23.2103753Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$5clone17hfc6d21363c24b4f6E+0x0): first defined here
2019-08-15T17:41:23.2104804Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$::clone::he7ae39b89981b0d1':
2019-08-15T17:41:23.2105497Z           rustc_interface.51du1beo-cgu.4:(.text._ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17he7ae39b89981b0d1E+0x0): multiple definition of `_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$::clone::he7ae39b89981b0d1'
2019-08-15T17:41:23.2106197Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17he7ae39b89981b0d1E+0x0): first defined here
2019-08-15T17:41:23.2106791Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$::clone::h86cbf6b2130f9de0':
2019-08-15T17:41:23.2107908Z           rustc_interface.51du1beo-cgu.4:(.text._ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h86cbf6b2130f9de0E+0x0): multiple definition of `_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$::clone::h86cbf6b2130f9de0'
2019-08-15T17:41:23.2108425Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h86cbf6b2130f9de0E+0x0): first defined here
2019-08-15T17:41:23.2108876Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$::clone::h17a5688fdaffdb67':
2019-08-15T17:41:23.2109338Z           rustc_interface.51du1beo-cgu.4:(.text._ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17h17a5688fdaffdb67E+0x0): multiple definition of `_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$::clone::h17a5688fdaffdb67'
2019-08-15T17:41:23.2109833Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17h17a5688fdaffdb67E+0x0): first defined here
2019-08-15T17:41:23.2110282Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$::clone::h7eebfa4f376eb15d':
2019-08-15T17:41:23.2110802Z           rustc_interface.51du1beo-cgu.4:(.text._ZN67_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$5clone17h7eebfa4f376eb15dE+0x0): multiple definition of `_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$::clone::h7eebfa4f376eb15d'
2019-08-15T17:41:23.2111343Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN67_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$5clone17h7eebfa4f376eb15dE+0x0): first defined here
2019-08-15T17:41:23.2111797Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$::clone::h369aa04e0a6d4f57':
2019-08-15T17:41:23.2112242Z           rustc_interface.51du1beo-cgu.4:(.text._ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17h369aa04e0a6d4f57E+0x0): multiple definition of `_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$::clone::h369aa04e0a6d4f57'
2019-08-15T17:41:23.2112761Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17h369aa04e0a6d4f57E+0x0): first defined here
2019-08-15T17:41:23.2113216Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.4.rcgu.o): In function `_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$::clone::hb0f07726dd841639':
2019-08-15T17:41:23.2113680Z           rustc_interface.51du1beo-cgu.4:(.text._ZN73_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$5clone17hb0f07726dd841639E+0x0): multiple definition of `_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$::clone::hb0f07726dd841639'
2019-08-15T17:41:23.2114790Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN73_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$5clone17hb0f07726dd841639E+0x0): first defined here
2019-08-15T17:41:23.2115414Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.5.rcgu.o): In function `_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$::clone::hb19105d312ceba5b':
2019-08-15T17:41:23.2116016Z           rustc_interface.51du1beo-cgu.5:(.text._ZN57_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$5clone17hb19105d312ceba5bE+0x0): multiple definition of `_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$::clone::hb19105d312ceba5b'
2019-08-15T17:41:23.2116748Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN57_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$5clone17hb19105d312ceba5bE+0x0): first defined here
2019-08-15T17:41:23.2117576Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.5.rcgu.o): In function `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4':
2019-08-15T17:41:23.2118197Z           rustc_interface.51du1beo-cgu.5:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): multiple definition of `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4'
2019-08-15T17:41:23.2118934Z           /tmp/rustcQqIM4r/libenv_logger-39812d84bbfe2b11.rlib(env_logger-39812d84bbfe2b11.env_logger.agm6r3km-cgu.15.rcgu.o):env_logger.agm6r3km-cgu.15:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): first defined here
2019-08-15T17:41:23.2119399Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$::clone::h1a06559b6eef647e':
2019-08-15T17:41:23.2119869Z           rustc_interface.51du1beo-cgu.7:(.text._ZN67_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$5clone17h1a06559b6eef647eE+0x0): multiple definition of `_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$::clone::h1a06559b6eef647e'
2019-08-15T17:41:23.2120400Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T17:41:23.2120880Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$::clone::h27a2cfc534fd3a5c':
2019-08-15T17:41:23.2121337Z           rustc_interface.51du1beo-cgu.7:(.text._ZN69_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$5clone17h27a2cfc534fd3a5cE+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$::clone::h27a2cfc534fd3a5c'
2019-08-15T17:41:23.2121869Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$5clone17h27a2cfc534fd3a5cE+0x0): first defined here
2019-08-15T17:41:23.2129642Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286':
2019-08-15T17:41:23.2130349Z           rustc_interface.51du1beo-cgu.7:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286'
2019-08-15T17:41:23.2131086Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): first defined here
2019-08-15T17:41:23.2131668Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.7.rcgu.o): In function `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50':
2019-08-15T17:41:23.2132326Z           rustc_interface.51du1beo-cgu.7:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): multiple definition of `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50'
2019-08-15T17:41:23.2133062Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): first defined here
2019-08-15T17:41:23.2133877Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.7.rcgu.o): In function `_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8410e18c68afaf77':
2019-08-15T17:41:23.2135256Z           rustc_interface.51du1beo-cgu.7:(.text._ZN88_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8410e18c68afaf77E+0x0): multiple definition of `_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8410e18c68afaf77'
2019-08-15T17:41:23.2136233Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN88_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8410e18c68afaf77E+0x0): first defined here
2019-08-15T17:41:23.2136914Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.8.rcgu.o): In function `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::hd1e6199d804827f3':
2019-08-15T17:41:23.2137649Z           rustc_interface.51du1beo-cgu.8:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17hd1e6199d804827f3E+0x0): multiple definition of `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::hd1e6199d804827f3'
2019-08-15T17:41:23.2138382Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17hd1e6199d804827f3E+0x0): first defined here
2019-08-15T17:41:23.2138989Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::hda2173d9314c699d':
2019-08-15T17:41:23.2139421Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17hda2173d9314c699dE+0x0): multiple definition of `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::hda2173d9314c699d'
2019-08-15T17:41:23.2139906Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17hda2173d9314c699dE+0x0): first defined here
2019-08-15T17:41:23.2140354Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T17:41:23.2140804Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841'
2019-08-15T17:41:23.2141305Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T17:41:23.2141913Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565':
2019-08-15T17:41:23.2142499Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565'
2019-08-15T17:41:23.2143044Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o):rustc_interface.51du1beo-cgu.14:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): first defined here
2019-08-15T17:41:23.2143846Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286':
2019-08-15T17:41:23.2163121Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286'
2019-08-15T17:41:23.2163762Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): first defined here
2019-08-15T17:41:23.2164774Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75':
2019-08-15T17:41:23.2165699Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75'
2019-08-15T17:41:23.2166454Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): first defined here
2019-08-15T17:41:23.2167088Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825':
2019-08-15T17:41:23.2167967Z           rustc_lint.eo11z9c2-cgu.10:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825'
2019-08-15T17:41:23.2168529Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): first defined here
2019-08-15T17:41:23.2168992Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.11.rcgu.o): In function `_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$::clone::h7d39887b6fb4b2bf':
2019-08-15T17:41:23.2169476Z           rustc_lint.eo11z9c2-cgu.11:(.text._ZN76_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$5clone17h7d39887b6fb4b2bfE+0x0): multiple definition of `_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$::clone::h7d39887b6fb4b2bf'
2019-08-15T17:41:23.2170096Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.5.rcgu.o):rustc_interface.51du1beo-cgu.5:(.text._ZN76_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$5clone17h7d39887b6fb4b2bfE+0x0): first defined here
2019-08-15T17:41:23.2170595Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.13.rcgu.o): In function `_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$::clone::h4ad482acfa3ef01b':
2019-08-15T17:41:23.2171032Z           rustc_lint.eo11z9c2-cgu.13:(.text._ZN58_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$5clone17h4ad482acfa3ef01bE+0x0): multiple definition of `_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$::clone::h4ad482acfa3ef01b'
2019-08-15T17:41:23.2176184Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.5.rcgu.o):rustc_interface.51du1beo-cgu.5:(.text._ZN58_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$5clone17h4ad482acfa3ef01bE+0x0): first defined here
2019-08-15T17:41:23.2176885Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.13.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T17:41:23.2177675Z           rustc_lint.eo11z9c2-cgu.13:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): multiple definition of `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9'
2019-08-15T17:41:23.2178409Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T17:41:23.2178895Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.13.rcgu.o): In function `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50':
2019-08-15T17:41:23.2179395Z           rustc_lint.eo11z9c2-cgu.13:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): multiple definition of `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50'
2019-08-15T17:41:23.2179985Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): first defined here
2019-08-15T17:41:23.2180503Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.15.rcgu.o): In function `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h787b191471aef5f9':
2019-08-15T17:41:23.2181031Z           rustc_lint.eo11z9c2-cgu.15:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): multiple definition of `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h787b191471aef5f9'
2019-08-15T17:41:23.2181692Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): first defined here
2019-08-15T17:41:23.2182226Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.2.rcgu.o): In function `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::hd1e6199d804827f3':
2019-08-15T17:41:23.2182722Z           rustc_lint.eo11z9c2-cgu.2:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17hd1e6199d804827f3E+0x0): multiple definition of `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::hd1e6199d804827f3'
2019-08-15T17:41:23.2183274Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17hd1e6199d804827f3E+0x0): first defined here
2019-08-15T17:41:23.2183772Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4':
2019-08-15T17:41:23.2184772Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): multiple definition of `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4'
2019-08-15T17:41:23.2185501Z           /tmp/rustcQqIM4r/libenv_logger-39812d84bbfe2b11.rlib(env_logger-39812d84bbfe2b11.env_logger.agm6r3km-cgu.15.rcgu.o):env_logger.agm6r3km-cgu.15:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): first defined here
2019-08-15T17:41:23.2186284Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$::gt::hbc62750dd2c847bf':
2019-08-15T17:41:23.2186915Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN61_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$2gt17hbc62750dd2c847bfE+0x0): multiple definition of `_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$::gt::hbc62750dd2c847bf'
2019-08-15T17:41:23.2187727Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN61_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$2gt17hbc62750dd2c847bfE+0x0): first defined here
2019-08-15T17:41:23.2188176Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416':
2019-08-15T17:41:23.2188664Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416'
2019-08-15T17:41:23.2189206Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): first defined here
2019-08-15T17:41:23.2189682Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e':
2019-08-15T17:41:23.2190247Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e'
2019-08-15T17:41:23.2190821Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): first defined here
2019-08-15T17:41:23.2191305Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h627aa6a8c9f7fc49':
2019-08-15T17:41:23.2191815Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h627aa6a8c9f7fc49E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h627aa6a8c9f7fc49'
2019-08-15T17:41:23.2192365Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h627aa6a8c9f7fc49E+0x0): first defined here
2019-08-15T17:41:23.2192841Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1':
2019-08-15T17:41:23.2193301Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1'
2019-08-15T17:41:23.2194540Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): first defined here
2019-08-15T17:41:23.2195237Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8634e49eeed33de8':
2019-08-15T17:41:23.2195883Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8634e49eeed33de8E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8634e49eeed33de8'
2019-08-15T17:41:23.2196647Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8634e49eeed33de8E+0x0): first defined here
2019-08-15T17:41:23.2197307Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o): In function `_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$::clone::h671f5af7ef348218':
2019-08-15T17:41:23.2198012Z           rustc_lint.eo11z9c2-cgu.5:(.text._ZN87_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$5clone17h671f5af7ef348218E+0x0): multiple definition of `_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$::clone::h671f5af7ef348218'
2019-08-15T17:41:23.2198716Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.15.rcgu.o):rustc_interface.51du1beo-cgu.15:(.text._ZN87_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$5clone17h671f5af7ef348218E+0x0): first defined here
2019-08-15T17:41:23.2199250Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.7.rcgu.o): In function `_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8410e18c68afaf77':
2019-08-15T17:41:23.2199963Z           rustc_lint.eo11z9c2-cgu.7:(.text._ZN88_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8410e18c68afaf77E+0x0): multiple definition of `_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8410e18c68afaf77'
2019-08-15T17:41:23.2200585Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN88_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8410e18c68afaf77E+0x0): first defined here
2019-08-15T17:41:23.2201062Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.7.rcgu.o): In function `_$LT$syntax_pos..hygiene..SyntaxContext$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf801b3b65e9ba545':
2019-08-15T17:41:23.2201584Z           rustc_lint.eo11z9c2-cgu.7:(.text._ZN75_$LT$syntax_pos..hygiene..SyntaxContext$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf801b3b65e9ba545E+0x0): multiple definition of `_$LT$rustc..dep_graph..serialized..SerializedDepNodeIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb4c35295eb208a25'
2019-08-15T17:41:23.2206549Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h787b191471aef5f9E+0x0): first defined here
2019-08-15T17:41:23.2207347Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$::clone::ha7af95504ad1d484':
2019-08-15T17:41:23.2208200Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17ha7af95504ad1d484E+0x0): multiple definition of `_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$::clone::ha7af95504ad1d484'
2019-08-15T17:41:23.2208720Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17ha7af95504ad1d484E+0x0): first defined here
2019-08-15T17:41:23.2209187Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$::clone::h2d3bf25f42fb716c':
2019-08-15T17:41:23.2209635Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17h2d3bf25f42fb716cE+0x0): multiple definition of `_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$::clone::h2d3bf25f42fb716c'
2019-08-15T17:41:23.2210152Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17h2d3bf25f42fb716cE+0x0): first defined here
2019-08-15T17:41:23.2210718Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$::clone::hf7eacee7f5b97729':
2019-08-15T17:41:23.2212402Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17hf7eacee7f5b97729E+0x0): multiple definition of `_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$::clone::hf7eacee7f5b97729'
2019-08-15T17:41:23.2213036Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17hf7eacee7f5b97729E+0x0): first defined here
2019-08-15T17:41:23.2213530Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$::clone::h56fd2ce728c4a0c4':
2019-08-15T17:41:23.2214377Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$5clone17h56fd2ce728c4a0c4E+0x0): multiple definition of `_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$::clone::h56fd2ce728c4a0c4'
2019-08-15T17:41:23.2215126Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$5clone17h56fd2ce728c4a0c4E+0x0): first defined here
2019-08-15T17:41:23.2215747Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$::clone::h6bd3ab1021f0941b':
2019-08-15T17:41:23.2216569Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h6bd3ab1021f0941bE+0x0): multiple definition of `_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$::clone::h6bd3ab1021f0941b'
2019-08-15T17:41:23.2217271Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h6bd3ab1021f0941bE+0x0): first defined here
2019-08-15T17:41:23.2218134Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$::clone::h2235ccd7c25d950e':
2019-08-15T17:41:23.2218608Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17h2235ccd7c25d950eE+0x0): multiple definition of `_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$::clone::h2235ccd7c25d950e'
2019-08-15T17:41:23.2219128Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17h2235ccd7c25d950eE+0x0): first defined here
2019-08-15T17:41:23.2219563Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$::clone::h4b6e1c0b1090f1c6':
2019-08-15T17:41:23.2220011Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h4b6e1c0b1090f1c6E+0x0): multiple definition of `_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$::clone::h4b6e1c0b1090f1c6'
2019-08-15T17:41:23.2220622Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h4b6e1c0b1090f1c6E+0x0): first defined here
2019-08-15T17:41:23.2221125Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$::clone::h8ce49d7fe24aea62':
2019-08-15T17:41:23.2221585Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$5clone17h8ce49d7fe24aea62E+0x0): multiple definition of `_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$::clone::h8ce49d7fe24aea62'
2019-08-15T17:41:23.2222107Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$5clone17h8ce49d7fe24aea62E+0x0): first defined here
2019-08-15T17:41:23.2222570Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$::clone::hd6df610aef6e2918':
2019-08-15T17:41:23.2223020Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17hd6df610aef6e2918E+0x0): multiple definition of `_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$::clone::hd6df610aef6e2918'
2019-08-15T17:41:23.2223520Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17hd6df610aef6e2918E+0x0): first defined here
2019-08-15T17:41:23.2224548Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$::clone::h37d4df313f0d3a6d':
2019-08-15T17:41:23.2225176Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN57_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$5clone17h37d4df313f0d3a6dE+0x0): multiple definition of `_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$::clone::h37d4df313f0d3a6d'
2019-08-15T17:41:23.2225866Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$5clone17h37d4df313f0d3a6dE+0x0): first defined here
2019-08-15T17:41:23.2226523Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$::clone::h319f9f8f49136073':
2019-08-15T17:41:23.2227152Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h319f9f8f49136073E+0x0): multiple definition of `_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$::clone::h319f9f8f49136073'
2019-08-15T17:41:23.2336745Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h319f9f8f49136073E+0x0): first defined here
2019-08-15T17:41:23.2337885Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$::clone::hd5e4433c65aea665':
2019-08-15T17:41:23.2338414Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17hd5e4433c65aea665E+0x0): multiple definition of `_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$::clone::hd5e4433c65aea665'
2019-08-15T17:41:23.2338954Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17hd5e4433c65aea665E+0x0): first defined here
2019-08-15T17:41:23.2339417Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$::clone::h3a1cb7973604aa7c':
2019-08-15T17:41:23.2342643Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17h3a1cb7973604aa7cE+0x0): multiple definition of `_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$::clone::h3a1cb7973604aa7c'
2019-08-15T17:41:23.2343230Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17h3a1cb7973604aa7cE+0x0): first defined here
2019-08-15T17:41:23.2343701Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$::clone::hfa3796e093c0cf87':
2019-08-15T17:41:23.2344957Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17hfa3796e093c0cf87E+0x0): multiple definition of `_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$::clone::hfa3796e093c0cf87'
2019-08-15T17:41:23.2345686Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17hfa3796e093c0cf87E+0x0): first defined here
2019-08-15T17:41:23.2346316Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$::clone::h464cdfe8607b2196':
2019-08-15T17:41:23.2346966Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h464cdfe8607b2196E+0x0): multiple definition of `_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$::clone::h464cdfe8607b2196'
2019-08-15T17:41:23.2347783Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h464cdfe8607b2196E+0x0): first defined here
2019-08-15T17:41:23.2348270Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$::clone::hc13b5ac7d3e09b83':
2019-08-15T17:41:23.2348735Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$5clone17hc13b5ac7d3e09b83E+0x0): multiple definition of `_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$::clone::hc13b5ac7d3e09b83'
2019-08-15T17:41:23.2349573Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$5clone17hc13b5ac7d3e09b83E+0x0): first defined here
2019-08-15T17:41:23.2350094Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$::clone::h81b70c43366e7a2a':
2019-08-15T17:41:23.2350558Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h81b70c43366e7a2aE+0x0): multiple definition of `_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$::clone::h81b70c43366e7a2a'
2019-08-15T17:41:23.2351110Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h81b70c43366e7a2aE+0x0): first defined here
2019-08-15T17:41:23.2351556Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$::clone::hab38708faef80148':
2019-08-15T17:41:23.2352011Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17hab38708faef80148E+0x0): multiple definition of `_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$::clone::hab38708faef80148'
2019-08-15T17:41:23.2352542Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17hab38708faef80148E+0x0): first defined here
2019-08-15T17:41:23.2353117Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$::clone::h8bc19b5f05f0901d':
2019-08-15T17:41:23.2353570Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h8bc19b5f05f0901dE+0x0): multiple definition of `_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$::clone::h8bc19b5f05f0901d'
2019-08-15T17:41:23.2354549Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h8bc19b5f05f0901dE+0x0): first defined here
2019-08-15T17:41:23.2355262Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$::clone::hf797b7e40c65838c':
2019-08-15T17:41:23.2355891Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$5clone17hf797b7e40c65838cE+0x0): multiple definition of `_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$::clone::hf797b7e40c65838c'
2019-08-15T17:41:23.2356598Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN60_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$5clone17hf797b7e40c65838cE+0x0): first defined here
2019-08-15T17:41:23.2357345Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$::clone::h657ae1118b352aad':
2019-08-15T17:41:23.2358245Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17h657ae1118b352aadE+0x0): multiple definition of `_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$::clone::h657ae1118b352aad'
2019-08-15T17:41:23.2358826Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17h657ae1118b352aadE+0x0): first defined here
2019-08-15T17:41:23.2359348Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$::clone::h9ac1f644ed52bca2':
2019-08-15T17:41:23.2359843Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$5clone17h9ac1f644ed52bca2E+0x0): multiple definition of `_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$::clone::h9ac1f644ed52bca2'
2019-08-15T17:41:23.2360408Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$5clone17h9ac1f644ed52bca2E+0x0): first defined here
2019-08-15T17:41:23.2360888Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$::clone::h8c9cac8f2ca45eb7':
2019-08-15T17:41:23.2361514Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$5clone17h8c9cac8f2ca45eb7E+0x0): multiple definition of `_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$::clone::h8c9cac8f2ca45eb7'
2019-08-15T17:41:23.2362874Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$5clone17h8c9cac8f2ca45eb7E+0x0): first defined here
2019-08-15T17:41:23.2363629Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$::clone::hba83b6457ba96a9d':
2019-08-15T17:41:23.2364639Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17hba83b6457ba96a9dE+0x0): multiple definition of `_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$::clone::hba83b6457ba96a9d'
2019-08-15T17:41:23.2365359Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17hba83b6457ba96a9dE+0x0): first defined here
2019-08-15T17:41:23.2365981Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc8ffc6cddda037f':
2019-08-15T17:41:23.2366722Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc8ffc6cddda037fE+0x0): multiple definition of `_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc8ffc6cddda037f'
2019-08-15T17:41:23.2367650Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc8ffc6cddda037fE+0x0): first defined here
2019-08-15T17:41:23.2368145Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$::clone::he03072ea426998be':
2019-08-15T17:41:23.2368613Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17he03072ea426998beE+0x0): multiple definition of `_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$::clone::he03072ea426998be'
2019-08-15T17:41:23.2369193Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17he03072ea426998beE+0x0): first defined here
2019-08-15T17:41:23.2369682Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$::eq::hc847be027b7299e6':
2019-08-15T17:41:23.2370154Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN62_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$2eq17hc847be027b7299e6E+0x0): multiple definition of `_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$::eq::hc847be027b7299e6'
2019-08-15T17:41:23.2370799Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.10.rcgu.o):rustc_lint.eo11z9c2-cgu.10:(.text._ZN62_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$2eq17hc847be027b7299e6E+0x0): first defined here
2019-08-15T17:41:23.2371266Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc763300301e91f0':
2019-08-15T17:41:23.2371753Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc763300301e91f0E+0x0): multiple definition of `_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc763300301e91f0'
2019-08-15T17:41:23.2372309Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc763300301e91f0E+0x0): first defined here
2019-08-15T17:41:23.2372807Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$::clone::hf79c5c5c090f1856':
2019-08-15T17:41:23.2373279Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hf79c5c5c090f1856E+0x0): multiple definition of `_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$::clone::hf79c5c5c090f1856'
2019-08-15T17:41:23.2373837Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hf79c5c5c090f1856E+0x0): first defined here
2019-08-15T17:41:23.2374961Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$::clone::hc4a4bb7b01687475':
2019-08-15T17:41:23.2375651Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$5clone17hc4a4bb7b01687475E+0x0): multiple definition of `_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$::clone::hc4a4bb7b01687475'
2019-08-15T17:41:23.2376429Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$5clone17hc4a4bb7b01687475E+0x0): first defined here
2019-08-15T17:41:23.2377087Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$::clone::h7948d4049cac020a':
2019-08-15T17:41:23.2377811Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h7948d4049cac020aE+0x0): multiple definition of `_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$::clone::h7948d4049cac020a'
2019-08-15T17:41:23.2378374Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h7948d4049cac020aE+0x0): first defined here
2019-08-15T17:41:23.2378995Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$::clone::hafa3fec4dbe4ef36':
2019-08-15T17:41:23.2379478Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17hafa3fec4dbe4ef36E+0x0): multiple definition of `_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$::clone::hafa3fec4dbe4ef36'
2019-08-15T17:41:23.2380053Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17hafa3fec4dbe4ef36E+0x0): first defined here
2019-08-15T17:41:23.2380537Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$::clone::h60036ab162659d98':
2019-08-15T17:41:23.2381053Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h60036ab162659d98E+0x0): multiple definition of `_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$::clone::h60036ab162659d98'
2019-08-15T17:41:23.2381617Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h60036ab162659d98E+0x0): first defined here
2019-08-15T17:41:23.2382102Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$::clone::hfc6d21363c24b4f6':
2019-08-15T17:41:23.2382673Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN64_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$5clone17hfc6d21363c24b4f6E+0x0): multiple definition of `_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$::clone::hfc6d21363c24b4f6'
2019-08-15T17:41:23.2383284Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN64_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$5clone17hfc6d21363c24b4f6E+0x0): first defined here
2019-08-15T17:41:23.2383778Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$::clone::he7ae39b89981b0d1':
2019-08-15T17:41:23.2384807Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17he7ae39b89981b0d1E+0x0): multiple definition of `_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$::clone::he7ae39b89981b0d1'
2019-08-15T17:41:23.2385561Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17he7ae39b89981b0d1E+0x0): first defined here
2019-08-15T17:41:23.2386178Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$::clone::h86cbf6b2130f9de0':
2019-08-15T17:41:23.2386811Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h86cbf6b2130f9de0E+0x0): multiple definition of `_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$::clone::h86cbf6b2130f9de0'
2019-08-15T17:41:23.2387987Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h86cbf6b2130f9de0E+0x0): first defined here
2019-08-15T17:41:23.2388500Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$::clone::h17a5688fdaffdb67':
2019-08-15T17:41:23.2389162Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17h17a5688fdaffdb67E+0x0): multiple definition of `_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$::clone::h17a5688fdaffdb67'
2019-08-15T17:41:23.2389736Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17h17a5688fdaffdb67E+0x0): first defined here
2019-08-15T17:41:23.2390231Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$::clone::h7eebfa4f376eb15d':
2019-08-15T17:41:23.2390725Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN67_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$5clone17h7eebfa4f376eb15dE+0x0): multiple definition of `_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$::clone::h7eebfa4f376eb15d'
2019-08-15T17:41:23.2391367Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN67_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$5clone17h7eebfa4f376eb15dE+0x0): first defined here
2019-08-15T17:41:23.2391906Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$::clone::h369aa04e0a6d4f57':
2019-08-15T17:41:23.2392426Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17h369aa04e0a6d4f57E+0x0): multiple definition of `_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$::clone::h369aa04e0a6d4f57'
2019-08-15T17:41:23.2393031Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.7.rcgu.o:rustc_driver.5zb31s0b-cgu.7:(.text._ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17h369aa04e0a6d4f57E+0x0): first defined here
2019-08-15T17:41:23.2393551Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$::clone::h46bb1d0328f119a8':
2019-08-15T17:41:23.2394430Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN64_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$5clone17h46bb1d0328f119a8E+0x0): multiple definition of `_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$::clone::h46bb1d0328f119a8'
2019-08-15T17:41:23.2395221Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN64_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$5clone17h46bb1d0328f119a8E+0x0): first defined here
2019-08-15T17:41:23.2395991Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$::clone::hf71f87b0dd79d485':
2019-08-15T17:41:23.2396631Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17hf71f87b0dd79d485E+0x0): multiple definition of `_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$::clone::hf71f87b0dd79d485'
2019-08-15T17:41:23.2397536Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17hf71f87b0dd79d485E+0x0): first defined here
2019-08-15T17:41:23.2398407Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$::clone::h26345023f52bea36':
2019-08-15T17:41:23.2398918Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN71_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$5clone17h26345023f52bea36E+0x0): multiple definition of `_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$::clone::h26345023f52bea36'
2019-08-15T17:41:23.2399494Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN71_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$5clone17h26345023f52bea36E+0x0): first defined here
2019-08-15T17:41:23.2400095Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$::clone::h7c1b0aa48e35fa89':
2019-08-15T17:41:23.2400666Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h7c1b0aa48e35fa89E+0x0): multiple definition of `_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$::clone::h7c1b0aa48e35fa89'
2019-08-15T17:41:23.2401262Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.13.rcgu.o:rustc_driver.5zb31s0b-cgu.13:(.text._ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h7c1b0aa48e35fa89E+0x0): first defined here
2019-08-15T17:41:23.2401797Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50':
2019-08-15T17:41:23.2444549Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): multiple definition of `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50'
2019-08-15T17:41:23.2445419Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): first defined here
2019-08-15T17:41:23.2446306Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a':
2019-08-15T17:41:23.2446932Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): multiple definition of `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a'
2019-08-15T17:41:23.2447752Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): first defined here
2019-08-15T17:41:23.2448432Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$::clone::h981793ca0380598e':
2019-08-15T17:41:23.2448942Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN64_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$5clone17h981793ca0380598eE+0x0): multiple definition of `_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$::clone::h981793ca0380598e'
2019-08-15T17:41:23.2449530Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN64_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$5clone17h981793ca0380598eE+0x0): first defined here
2019-08-15T17:41:23.2450030Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T17:41:23.2451355Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841'
2019-08-15T17:41:23.2452025Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T17:41:23.2452544Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$::clone::h1a06559b6eef647e':
2019-08-15T17:41:23.2453097Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN67_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$5clone17h1a06559b6eef647eE+0x0): multiple definition of `_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$::clone::h1a06559b6eef647e'
2019-08-15T17:41:23.2453867Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T17:41:23.2455154Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565':
2019-08-15T17:41:23.2455786Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565'
2019-08-15T17:41:23.2456641Z           /tmp/rustcQqIM4r/librustc_interface-edf9bc1049911e46.rlib(rustc_interface-edf9bc1049911e46.rustc_interface.51du1beo-cgu.14.rcgu.o):rustc_interface.51du1beo-cgu.14:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): first defined here
2019-08-15T17:41:23.2457272Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::ne::h7d0d3d988fdeabb8':
2019-08-15T17:41:23.2458110Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2ne17h7d0d3d988fdeabb8E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::ne::h7d0d3d988fdeabb8'
2019-08-15T17:41:23.2458666Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2ne17h7d0d3d988fdeabb8E+0x0): first defined here
2019-08-15T17:41:23.2459131Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$::clone::h27a2cfc534fd3a5c':
2019-08-15T17:41:23.2459644Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN69_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$5clone17h27a2cfc534fd3a5cE+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$::clone::h27a2cfc534fd3a5c'
2019-08-15T17:41:23.2460301Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$5clone17h27a2cfc534fd3a5cE+0x0): first defined here
2019-08-15T17:41:23.2460844Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286':
2019-08-15T17:41:23.2461344Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286'
2019-08-15T17:41:23.2461916Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): first defined here
2019-08-15T17:41:23.2462417Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4':
2019-08-15T17:41:23.2462890Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): multiple definition of `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4'
2019-08-15T17:41:23.2463397Z           /tmp/rustcQqIM4r/libenv_logger-39812d84bbfe2b11.rlib(env_logger-39812d84bbfe2b11.env_logger.agm6r3km-cgu.15.rcgu.o):env_logger.agm6r3km-cgu.15:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): first defined here
2019-08-15T17:41:23.2464510Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$::gt::hbc62750dd2c847bf':
2019-08-15T17:41:23.2465186Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN61_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$2gt17hbc62750dd2c847bfE+0x0): multiple definition of `_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$::gt::hbc62750dd2c847bf'
2019-08-15T17:41:23.2465894Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN61_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$2gt17hbc62750dd2c847bfE+0x0): first defined here
2019-08-15T17:41:23.2466547Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$::clone::h64e1b3829bdeb7ce':
2019-08-15T17:41:23.2467180Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): multiple definition of `_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$::clone::h64e1b3829bdeb7ce'
2019-08-15T17:41:23.2467955Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T17:41:23.2468417Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383':
2019-08-15T17:41:23.2468994Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8311c2f15bf4c383'
2019-08-15T17:41:23.2469792Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.8.rcgu.o:rustc_driver.5zb31s0b-cgu.8:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8311c2f15bf4c383E+0x0): first defined here
2019-08-15T17:41:23.2470276Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$::clone::hfca5f67e5bdde432':
2019-08-15T17:41:23.2470778Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN67_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$5clone17hfca5f67e5bdde432E+0x0): multiple definition of `_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$::clone::hfca5f67e5bdde432'
2019-08-15T17:41:23.2471367Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN67_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$5clone17hfca5f67e5bdde432E+0x0): first defined here
2019-08-15T17:41:23.2471873Z           /tmp/rustcQqIM4r/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T17:41:23.2472665Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): multiple definition of `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9'
2019-08-15T17:41:23.2473212Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T17:41:23.2473661Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$rustc..mir..Promoted$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8c0c05d1ff467785':
2019-08-15T17:41:23.2474582Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN61_$LT$rustc..mir..Promoted$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8c0c05d1ff467785E+0x0): multiple definition of `_$LT$rustc..mir..Promoted$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8c0c05d1ff467785'
2019-08-15T17:41:23.2475291Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.11.rcgu.o):rustc_lint.eo11z9c2-cgu.11:(.text._ZN61_$LT$rustc..mir..Promoted$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8c0c05d1ff467785E+0x0): first defined here
2019-08-15T17:41:23.2475918Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$::clone::h6db92323c5933253':
2019-08-15T17:41:23.2476562Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN68_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$5clone17h6db92323c5933253E+0x0): multiple definition of `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$::clone::h6db92323c5933253'
2019-08-15T17:41:23.2477492Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.13.rcgu.o):rustc_lint.eo11z9c2-cgu.13:(.text._ZN68_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$5clone17h6db92323c5933253E+0x0): first defined here
2019-08-15T17:41:23.2478035Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb22b3fbe986a9959':
2019-08-15T17:41:23.2478524Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb22b3fbe986a9959E+0x0): multiple definition of `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb22b3fbe986a9959'
2019-08-15T17:41:23.2479231Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.13.rcgu.o):rustc_lint.eo11z9c2-cgu.13:(.text._ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb22b3fbe986a9959E+0x0): first defined here
2019-08-15T17:41:23.2479678Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T17:41:23.2480158Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): multiple definition of `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9'
2019-08-15T17:41:23.2480696Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.14.rcgu.o:rustc_driver.5zb31s0b-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T17:41:23.2481271Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75':
2019-08-15T17:41:23.2481929Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hed2011ff0ea5ea75'
2019-08-15T17:41:23.2482833Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hed2011ff0ea5ea75E+0x0): first defined here
2019-08-15T17:41:23.2483414Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.11.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825':
2019-08-15T17:41:23.2484268Z           rustc_traits.16on8l7v-cgu.11:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hfa0c002cf3061825'
2019-08-15T17:41:23.2485084Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hfa0c002cf3061825E+0x0): first defined here
2019-08-15T17:41:23.2485850Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$::cmp::h20bb7007c256a06c':
2019-08-15T17:41:23.2486514Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN60_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$3cmp17h20bb7007c256a06cE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$::cmp::h20bb7007c256a06c'
2019-08-15T17:41:23.2487174Z           /tmp/rustcQqIM4r/librustc_lint-885a3f91ccfbfa3c.rlib(rustc_lint-885a3f91ccfbfa3c.rustc_lint.eo11z9c2-cgu.5.rcgu.o):rustc_lint.eo11z9c2-cgu.5:(.text._ZN60_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$3cmp17h20bb7007c256a06cE+0x0): first defined here
2019-08-15T17:41:23.2487897Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a':
2019-08-15T17:41:23.2488355Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): multiple definition of `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a'
2019-08-15T17:41:23.2488862Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.15.rcgu.o:rustc_driver.5zb31s0b-cgu.15:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): first defined here
2019-08-15T17:41:23.2489321Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416':
2019-08-15T17:41:23.2489909Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h5b5ce85a03fc6416'
2019-08-15T17:41:23.2490446Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h5b5ce85a03fc6416E+0x0): first defined here
2019-08-15T17:41:23.2490913Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T17:41:23.2491415Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841'
2019-08-15T17:41:23.2491961Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.5.rcgu.o:rustc_driver.5zb31s0b-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T17:41:23.2493456Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e':
2019-08-15T17:41:23.2494416Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h12c550ab4509e43e'
2019-08-15T17:41:23.2495259Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h12c550ab4509e43eE+0x0): first defined here
2019-08-15T17:41:23.2495887Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1':
2019-08-15T17:41:23.2496529Z           rustc_traits.16on8l7v-cgu.14:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf605f5f420d717e1'
2019-08-15T17:41:23.2497289Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-587d63cb4d69e0ac.rustc_driver.5zb31s0b-cgu.9.rcgu.o:rustc_driver.5zb31s0b-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17hf605f5f420d717e1E+0x0): first defined here
2019-08-15T17:41:23.2497953Z           /tmp/rustcQqIM4r/librustc_traits-b6847f91b8826af7.rlib(rustc_traits-b6847f91b8826af7.rustc_traits.16on8l7v-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8634e49eeed33de8':
---
2019-08-15T17:41:23.4661025Z == clock drift check ==
2019-08-15T17:41:23.4661077Z   local time: Thu Aug 15 17:41:23 UTC 2019
2019-08-15T17:41:23.4661190Z   network time: Thu, 15 Aug 2019 17:41:23 GMT
2019-08-15T17:41:23.4661241Z == end clock drift check ==
2019-08-15T17:41:24.2498501Z ##[error]Bash exited with code '1'.
2019-08-15T17:41:24.2555589Z ##[section]Starting: Upload CPU usage statistics
2019-08-15T17:41:24.2559272Z ==============================================================================
2019-08-15T17:41:24.2559353Z Task         : Bash
2019-08-15T17:41:24.2559406Z Description  : Run a Bash script on macOS, Linux, or Windows

I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact @TimNN. (Feature Requests)

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Aug 15, 2019
@Centril Centril closed this Aug 15, 2019
@Centril Centril deleted the rollup-yry7nsw branch August 15, 2019 17:45
@Centril Centril added the rollup A PR which is a rollup label Oct 24, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
rollup A PR which is a rollup S-waiting-on-review Status: Awaiting review from the assignee but also interested parties.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants