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 7 pull requests #63610

Closed
wants to merge 28 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 28 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.
…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
…xcrichton

Utilize -Zbinary-dep-depinfo in rustbuild

The last commit moves us over to using binary-dep-depinfo while the first two permit us to bootstrap from what will become future beta, to be released in the next week (it's the `cfg(bootstrap)` processing).

We no longer utilize stamp-file mtimes at all inside rustbuild, and a future PR may be able to entirely eliminate them by eagerly copying to the appropriate sysroot. The only mtime-based dependency tracking left is for documentation because we lie to Cargo about the rustdoc binary, so Cargo does not track changes to the real binary, and codegen-backends because binary-dep-depinfo does not emit that information into the depfiles.

Both of these are fixable in the longer term but this existing patch gives us the following benefits:
 * We no longer delete Cargo target directories manually within a stage. Cross-stage, changes to codegen backends will still clear out target directories. This means that incremental state persists across individual steps (e.g., rebuilding libstd does not clear out librustc incremental state). Fixes rust-lang#54712.
 * Dependency tracking across steps within a given stage is now fully precise. We will not clear out all codegen backend dependencies due to changes in librustc_driver, for example, only deleting the final librustc_codegen_llvm crate. Fixes rust-lang#54008, fixes rust-lang#50481.
 * We properly track codegen backends as a dependency (equivalent to rustc) across changes. Fixes rust-lang#53284, and fixes rust-lang#52719.
 * Cross-stage dependency tracking of crates is also much more accurate and reliable. Most likely fixes rust-lang#49979 (but no reproduction steps in that issue). Fixes rust-lang#59105.

cc rust-lang#63012
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
…chton

Update rustc-demangle to 0.1.16.

Includes rust-lang/rustc-demangle#29 and rust-lang/rustc-demangle#30.
You can see the effects of the former in the testcase changes.

r? @alexcrichton cc @davidtwco @michaelwoerister
rustc_codegen_utils: account for 1-indexed anonymous lifetimes in v0 mangling.

I don't really understand why `anonymize_late_bound_regions` starts with `BrAnon(1)` instead of `BrAnon(0)`, but it does (maybe @nikomatsakis knows?): https://github.com/rust-lang/rust/blob/c43d03a19f326f4a323569328cc501e86eb6d22e/src/librustc/ty/fold.rs#L696-L712

Thankfully, the mangling format and demangler implementations are fine, and I just needed to offset the anonymized lifetime indices by `1` to get the correct mangling.

cc @alexcrichton @michaelwoerister
… 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=7 rollup=never

@bors
Copy link
Contributor

bors commented Aug 15, 2019

📌 Commit 5908574 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 5908574 with merge f362c5b886c748f39b148262952ab260923898ef...

@bors
Copy link
Contributor

bors commented Aug 15, 2019

💔 Test failed - checks-azure

@rust-highfive
Copy link
Collaborator

The job i686-apple 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-15T18:10:05.1441480Z [RUSTC-TIMING] rustc_save_analysis test:false 62.748
2019-08-15T18:11:41.2654340Z [RUSTC-TIMING] rustc_mir test:false 419.073
2019-08-15T18:12:11.7917200Z [RUSTC-TIMING] rustc_interface test:false 131.519
2019-08-15T18:13:03.6193130Z [RUSTC-TIMING] rustc test:false 742.527
2019-08-15T18:13:33.6669960Z error: linking with `cc` failed: exit code: 1
2019-08-15T18:13:33.6671880Z   |
2019-08-15T18:13:33.6742230Z   = note: "cc" "-m32" "-L" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-sysroot/lib/rustlib/i686-apple-darwin/lib" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.0.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.1.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.10.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.11.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.12.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.13.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.14.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.15.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.2.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.3.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.4.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.5.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.6.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.8.rcgu.o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.9.rcgu.o" "-o" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/librustc_driver-c45a9c1e6c0ffa52.dylib" "-Wl,-exported_symbols_list,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/list" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.24b6fmxayqsiw4nu.rcgu.o" "-Wl,-dead_strip" "-nodefaultlibs" "-L" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps" "-L" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/release/deps" "-L" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/build/backtrace-sys-764565be5ae77803/out" "-L" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/build/miniz-sys-86f88acd9a4f3e4a/out" "-L" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-sysroot/lib/rustlib/i686-apple-darwin/lib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libenv_logger-4ec36c32ec77a44f.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libhumantime-01ca37002d3c456a.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libquick_error-ba9780bfb2348b1f.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_lint-0b4261b2537ab6c8.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_traits-a915b3b16bb9b6c2.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_privacy-b4ebfe9328da6d19.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_typeck-701a7532a63e4e68.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_passes-2b8262651039f8c4.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/liblog_settings-debc381516e3349f.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libeither-8e58e0bc1db0ad5b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_codegen_ssa-3b61a16096801ec3.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libtempfile-80117fb58091f51e.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libremove_dir_all-8d9a0daaaff594c6.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libcc-bcbb766530349c2c.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_incremental-b5e7a7c31ea738a0.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_ast_borrowck-19adb5065ffa5966.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_save_analysis-f6114030943c0574.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libserde_json-cb0d987548d2ea8e.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libryu-9bf1d71aef9d8334.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libitoa-211a2e8bf1f4127b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_codegen_utils-3587043438bbb7ca.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libpunycode-9495360796084890.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_metadata-724a9a295a487753.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libflate2-cadc5dae0af229fd.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libminiz_sys-9766bc4bc991f068.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libcrc32fast-71a4181d6342e034.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc-24e38b1e655bd6c1.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libnum_cpus-497b6f58805aa3c6.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libmeasureme-5bad591ede1c1ee3.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libmemmap-c068741e9f6fffab.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libchalk_engine-da49662d2c3b622b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libchalk_macros-da38991ff8fcafa7.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/liblazy_static-3d88a3b1591f375f.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libfmt_macros-eded0fd8fe3c5d7c.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_fs_util-10543d055c46b1f5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_apfloat-95c8cfec3e83bade.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libbacktrace-07873cd37c8454c7.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libbacktrace_sys-0cddc675b05214f5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_demangle-63fc923395ada6f4.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libpolonius_engine-56acd4ce50aa88eb.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libdatafrog-a22cd06e3bcc111d.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libparking_lot-fba58629f7934b1d.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libparking_lot_core-33e95735af3d58c4.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librand-73a113aad42a6c7e.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librand_xorshift-e021a1d64746ea49.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librand_pcg-8e1bc025ea7576b5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librand_hc-729341b6daf97abb.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librand_chacha-3c375589193af8d1.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librand_isaac-163acd4abe95d1f2.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librand_core-9599c94739dc6ac6.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/liblock_api-42db1b58b6dd3741.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libowning_ref-8e4e6712deddb317.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libscopeguard-67d2c7f9aebaddc9.rlib" "-L" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-sysroot/lib/rustlib/i686-apple-darwin/lib" "-ltest-dbcd0b543d130315" "-L" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-sysroot/lib/rustlib/i686-apple-darwin/lib" "-lterm-fa00948df04af051" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax-c68c30ac421f7229.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_lexer-039894d1580adccb.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_target-cbb877695c866f88.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_errors-56db0fb53daa7597.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libatty-2a40cb0d9c3ed1c3.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libannotate_snippets-e9665253b7470c56.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_pos-d04a279b0ff5023f.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libunicode_width-1f302255a5ff69ff.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libarena-1d14a3e5bb66a229.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libtermcolor-1c3352cfb1c06446.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libproc_macro-e7857fe6665a84e7.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_data_structures-e2cbf4e834f0e3a9.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libena-7c27a52e27ab3dc5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libstable_deref_trait-4a553c9d074eaa0e.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libgraphviz-277e21503d8cbd39.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libjobserver-c11f486fa183af48.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/liblibc-1761db50408c6630.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_hash-f1a36f7975099cad.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libbyteorder-739945fab3468762.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libserialize-7e58f87bd13c7403.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libindexmap-c3b63b46a28adf8d.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsmallvec-b66eb2fee76e3ea6.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libscoped_tls-4a329ed3d8db0c34.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/liblazy_static-8918de339f32210b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libbitflags-80d329657df0d12c.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librls_data-eb23a22b4a5f24e5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librls_span-429ec2e5ff2a226b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libserde-76e85b56df612df5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/liblog-d592ff7767820fc5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libcfg_if-a64cbea7c4bb64fc.rlib" "-L" "/Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-sysroot/lib/rustlib/i686-apple-darwin/lib" "-lstd-ec0ae461c2c6d651" "/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libcompiler_builtins-d5338fbdd73818b2.rlib" "-framework" "Security" "-lSystem" "-lresolv" "-lc" "-lm" "-dynamiclib" "-Wl,-dylib" "-Wl,-install_name" "-Wl,@rpath/librustc_driver-c45a9c1e6c0ffa52.dylib" "-Wl,-rpath,@loader_path/../lib"
2019-08-15T18:13:33.6754880Z   = note: ld: warning: text-based stub file /System/Library/Frameworks//Security.framework/Security.tbd and library file /System/Library/Frameworks//Security.framework/Security are out of sync. Falling back to library file for linking.
2019-08-15T18:13:33.6756040Z           duplicate symbol __ZN59_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$5clone17hc830f62dbdf02b04E in:
2019-08-15T18:13:33.6756910Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.15.rcgu.o
2019-08-15T18:13:33.6757980Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.12.rcgu.o)
2019-08-15T18:13:33.6758890Z           duplicate symbol __ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17h2ff67fbe05d925c5E in:
2019-08-15T18:13:33.6759730Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.13.rcgu.o
2019-08-15T18:13:33.6760640Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.15.rcgu.o)
2019-08-15T18:13:33.6761450Z           duplicate symbol __ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h02b6fb3a00399651E in:
2019-08-15T18:13:33.6762300Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.13.rcgu.o
2019-08-15T18:13:33.6763190Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.15.rcgu.o)
2019-08-15T18:13:33.6763990Z           duplicate symbol __ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17hec63496c489874efE in:
2019-08-15T18:13:33.6764850Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6765740Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6766530Z           duplicate symbol __ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17h8c3219d565a54cceE in:
2019-08-15T18:13:33.6767530Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6768400Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6769350Z           duplicate symbol __ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17h17c9f17f07eefc8eE in:
2019-08-15T18:13:33.6770190Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6771070Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6771890Z           duplicate symbol __ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17hf3902cf69990587eE in:
2019-08-15T18:13:33.6772720Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6773970Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6774840Z           duplicate symbol __ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hbbe91a951b58057eE in:
2019-08-15T18:13:33.6776140Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6777120Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6777920Z           duplicate symbol __ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h85dd0407b9e7a52eE in:
2019-08-15T18:13:33.6778780Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6779650Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6780440Z           duplicate symbol __ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17hf3f6d79c6cbddd6dE in:
2019-08-15T18:13:33.6781300Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6782170Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6782970Z           duplicate symbol __ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h13bf829323225a6dE in:
2019-08-15T18:13:33.6783820Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6784690Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6785500Z           duplicate symbol __ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17h2d6bb84f9e5ad75dE in:
2019-08-15T18:13:33.6786350Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6787240Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6788040Z           duplicate symbol __ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17h7f47b52863c0c45dE in:
2019-08-15T18:13:33.6788860Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6789760Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6790550Z           duplicate symbol __ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h7b99dcdb155f1d5cE in:
2019-08-15T18:13:33.6791650Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6792540Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6793310Z           duplicate symbol __ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h96dc58962df29b4cE in:
2019-08-15T18:13:33.6794350Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6795320Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6796120Z           duplicate symbol __ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17hddabba78a5eebabbE in:
2019-08-15T18:13:33.6796970Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6797840Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6798640Z           duplicate symbol __ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17h78344bd01517d09aE in:
2019-08-15T18:13:33.6799490Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6800390Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6801190Z           duplicate symbol __ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17hbdddd8f535857d4aE in:
2019-08-15T18:13:33.6802140Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6803030Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6803840Z           duplicate symbol __ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h10876443845fd259E in:
2019-08-15T18:13:33.6804680Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6805560Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6806340Z           duplicate symbol __ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h6821cd7b9ec85329E in:
2019-08-15T18:13:33.6807190Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6808080Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6809130Z           duplicate symbol __ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17ha8332a47af574a58E in:
2019-08-15T18:13:33.6809980Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6810850Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6811830Z           duplicate symbol __ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h431b992a1522cc08E in:
2019-08-15T18:13:33.6812770Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6813660Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6814470Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h24e75e7b1e302724E in:
2019-08-15T18:13:33.6815320Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6816200Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6817000Z           duplicate symbol __ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17hd91547197e8a77d3E in:
2019-08-15T18:13:33.6817860Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6818730Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6819530Z           duplicate symbol __ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17h2b1ac4aea3edf6b3E in:
2019-08-15T18:13:33.6820370Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6821260Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6822060Z           duplicate symbol __ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17hb3192bf417c300c2E in:
2019-08-15T18:13:33.6822890Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6823770Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6824560Z           duplicate symbol __ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17h67cb5501236b7ab2E in:
2019-08-15T18:13:33.6825490Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6826460Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6827510Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17ha9438d40c7dac952E in:
2019-08-15T18:13:33.6828380Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6829420Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6830320Z           duplicate symbol __ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17hb4e91b4ec155b1f1E in:
2019-08-15T18:13:33.6831180Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6832170Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6832970Z           duplicate symbol __ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17h358524cf51a86111E in:
2019-08-15T18:13:33.6833960Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6834860Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6835650Z           duplicate symbol __ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h5cc70ee5be9621c0E in:
2019-08-15T18:13:33.6836510Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6837400Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T18:13:33.6838200Z           duplicate symbol __ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17hec63496c489874efE in:
2019-08-15T18:13:33.6839040Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6839900Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6840690Z           duplicate symbol __ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17h8c3219d565a54cceE in:
2019-08-15T18:13:33.6841540Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6842420Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6843200Z           duplicate symbol __ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17h17c9f17f07eefc8eE in:
2019-08-15T18:13:33.6844030Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6845150Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6845960Z           duplicate symbol __ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17hf3902cf69990587eE in:
2019-08-15T18:13:33.6846810Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6847850Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6848740Z           duplicate symbol __ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hbbe91a951b58057eE in:
2019-08-15T18:13:33.6849580Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6850460Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6851240Z           duplicate symbol __ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h85dd0407b9e7a52eE in:
2019-08-15T18:13:33.6852090Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6852970Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6853750Z           duplicate symbol __ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17hf3f6d79c6cbddd6dE in:
2019-08-15T18:13:33.6854600Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6855460Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6856240Z           duplicate symbol __ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h13bf829323225a6dE in:
2019-08-15T18:13:33.6857100Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6857950Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6858760Z           duplicate symbol __ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17h2d6bb84f9e5ad75dE in:
2019-08-15T18:13:33.6859600Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6860680Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6861860Z           duplicate symbol __ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17h7f47b52863c0c45dE in:
2019-08-15T18:13:33.6862850Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6864100Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6864900Z           duplicate symbol __ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h7b99dcdb155f1d5cE in:
2019-08-15T18:13:33.6865750Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6866830Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6867710Z           duplicate symbol __ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h96dc58962df29b4cE in:
2019-08-15T18:13:33.6868580Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6869450Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6870230Z           duplicate symbol __ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17hddabba78a5eebabbE in:
2019-08-15T18:13:33.6871230Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6872210Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6873060Z           duplicate symbol __ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17h78344bd01517d09aE in:
2019-08-15T18:13:33.6873910Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6874770Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6875580Z           duplicate symbol __ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17hbdddd8f535857d4aE in:
2019-08-15T18:13:33.6876440Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6877320Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6878100Z           duplicate symbol __ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h10876443845fd259E in:
2019-08-15T18:13:33.6878940Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6879820Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6880680Z           duplicate symbol __ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h6821cd7b9ec85329E in:
2019-08-15T18:13:33.6881550Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6882740Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6883510Z           duplicate symbol __ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17ha8332a47af574a58E in:
2019-08-15T18:13:33.6884550Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6885510Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6886310Z           duplicate symbol __ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h431b992a1522cc08E in:
2019-08-15T18:13:33.6887180Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6888040Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6889190Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h24e75e7b1e302724E in:
2019-08-15T18:13:33.6890130Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6891020Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6891850Z           duplicate symbol __ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17hd91547197e8a77d3E in:
2019-08-15T18:13:33.6892680Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6893560Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6894360Z           duplicate symbol __ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17h2b1ac4aea3edf6b3E in:
2019-08-15T18:13:33.6895210Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6896100Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6896880Z           duplicate symbol __ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17hb3192bf417c300c2E in:
2019-08-15T18:13:33.6897720Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6898610Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6899400Z           duplicate symbol __ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17h67cb5501236b7ab2E in:
2019-08-15T18:13:33.6900510Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6901380Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6902420Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17ha9438d40c7dac952E in:
2019-08-15T18:13:33.6903480Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6904450Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6905270Z           duplicate symbol __ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17hb4e91b4ec155b1f1E in:
2019-08-15T18:13:33.6906120Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6906970Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6907770Z           duplicate symbol __ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17h358524cf51a86111E in:
2019-08-15T18:13:33.6908630Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6909480Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6910300Z           duplicate symbol __ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h5cc70ee5be9621c0E in:
2019-08-15T18:13:33.6911130Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6912010Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T18:13:33.6912810Z           duplicate symbol __ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17h2ff67fbe05d925c5E in:
2019-08-15T18:13:33.6913650Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.13.rcgu.o
2019-08-15T18:13:33.6914550Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.5.rcgu.o)
2019-08-15T18:13:33.6915340Z           duplicate symbol __ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h02b6fb3a00399651E in:
2019-08-15T18:13:33.6916200Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.13.rcgu.o
2019-08-15T18:13:33.6917090Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.5.rcgu.o)
2019-08-15T18:13:33.6917890Z           duplicate symbol __ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hbd13f3a51b431418E in:
2019-08-15T18:13:33.6919030Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.13.rcgu.o)
2019-08-15T18:13:33.6919880Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.11.rcgu.o)
2019-08-15T18:13:33.6920690Z           duplicate symbol __ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17hec63496c489874efE in:
2019-08-15T18:13:33.6921740Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6923080Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6924240Z           duplicate symbol __ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17h8c3219d565a54cceE in:
2019-08-15T18:13:33.6925500Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6926980Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6927850Z           duplicate symbol __ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17h17c9f17f07eefc8eE in:
2019-08-15T18:13:33.6928700Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6929600Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6930400Z           duplicate symbol __ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17hf3902cf69990587eE in:
2019-08-15T18:13:33.6931240Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6932260Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6933050Z           duplicate symbol __ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hbbe91a951b58057eE in:
2019-08-15T18:13:33.6933920Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6934800Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6935570Z           duplicate symbol __ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17hf3f6d79c6cbddd6dE in:
2019-08-15T18:13:33.6936430Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6937290Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6938370Z           duplicate symbol __ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h13bf829323225a6dE in:
2019-08-15T18:13:33.6939230Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6940100Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6941080Z           duplicate symbol __ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17h2d6bb84f9e5ad75dE in:
2019-08-15T18:13:33.6941990Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6942890Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6943710Z           duplicate symbol __ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17h7f47b52863c0c45dE in:
2019-08-15T18:13:33.6944550Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6945450Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6946220Z           duplicate symbol __ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h7b99dcdb155f1d5cE in:
2019-08-15T18:13:33.6947070Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6947970Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6948750Z           duplicate symbol __ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h96dc58962df29b4cE in:
2019-08-15T18:13:33.6949600Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6950480Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6951280Z           duplicate symbol __ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17hddabba78a5eebabbE in:
2019-08-15T18:13:33.6952140Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6953000Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6953800Z           duplicate symbol __ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17h78344bd01517d09aE in:
2019-08-15T18:13:33.6954660Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6955540Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6956600Z           duplicate symbol __ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17hbdddd8f535857d4aE in:
2019-08-15T18:13:33.6957440Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6958320Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6959300Z           duplicate symbol __ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h10876443845fd259E in:
2019-08-15T18:13:33.6960220Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6961110Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6962120Z           duplicate symbol __ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h6821cd7b9ec85329E in:
2019-08-15T18:13:33.6962990Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6963870Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6964670Z           duplicate symbol __ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17ha8332a47af574a58E in:
2019-08-15T18:13:33.6965540Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6966390Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6967200Z           duplicate symbol __ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h431b992a1522cc08E in:
2019-08-15T18:13:33.6968060Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6968930Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6969750Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h24e75e7b1e302724E in:
2019-08-15T18:13:33.6970570Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6971460Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6972260Z           duplicate symbol __ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17hd91547197e8a77d3E in:
2019-08-15T18:13:33.6973110Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6973990Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6975030Z           duplicate symbol __ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17h2b1ac4aea3edf6b3E in:
2019-08-15T18:13:33.6975910Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6976970Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6977830Z           duplicate symbol __ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17hb3192bf417c300c2E in:
2019-08-15T18:13:33.6978690Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6979580Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6980370Z           duplicate symbol __ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17h67cb5501236b7ab2E in:
2019-08-15T18:13:33.6981290Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6982160Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6982970Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17ha9438d40c7dac952E in:
2019-08-15T18:13:33.6983830Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6984700Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6985500Z           duplicate symbol __ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17hb4e91b4ec155b1f1E in:
2019-08-15T18:13:33.6986340Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6987230Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6988040Z           duplicate symbol __ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17h358524cf51a86111E in:
2019-08-15T18:13:33.6988880Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6989780Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6990560Z           duplicate symbol __ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h5cc70ee5be9621c0E in:
2019-08-15T18:13:33.6991410Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.6992620Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T18:13:33.6993410Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T18:13:33.6994280Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T18:13:33.6995330Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_privacy-b4ebfe9328da6d19.rlib(rustc_privacy-b4ebfe9328da6d19.rustc_privacy.2cyhie11-cgu.13.rcgu.o)
2019-08-15T18:13:33.6996250Z           duplicate symbol __ZN81_$LT$rustc..mir..interpret..value..ConstValue$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd4cf3b7a6da8f4e2E in:
2019-08-15T18:13:33.6997130Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.11.rcgu.o)
2019-08-15T18:13:33.6998000Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.10.rcgu.o)
2019-08-15T18:13:33.6998800Z           duplicate symbol __ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hbd13f3a51b431418E in:
2019-08-15T18:13:33.6999670Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.13.rcgu.o)
2019-08-15T18:13:33.7000530Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.15.rcgu.o)
2019-08-15T18:13:33.7001350Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T18:13:33.7002290Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T18:13:33.7003180Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.15.rcgu.o)
2019-08-15T18:13:33.7003990Z           duplicate symbol __ZN68_$LT$syntax_pos..hygiene..ExpnInfo$u20$as$u20$core..clone..Clone$GT$5clone17hf3174c119aa6151bE in:
2019-08-15T18:13:33.7004820Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.7.rcgu.o)
2019-08-15T18:13:33.7005720Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.3.rcgu.o)
2019-08-15T18:13:33.7006520Z           duplicate symbol __ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17hec63496c489874efE in:
2019-08-15T18:13:33.7007380Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7008250Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7009040Z           duplicate symbol __ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17h8c3219d565a54cceE in:
2019-08-15T18:13:33.7009900Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7011020Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7011820Z           duplicate symbol __ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17h17c9f17f07eefc8eE in:
2019-08-15T18:13:33.7012840Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7013790Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7014730Z           duplicate symbol __ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17hf3902cf69990587eE in:
2019-08-15T18:13:33.7015560Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7016440Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7017240Z           duplicate symbol __ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hbbe91a951b58057eE in:
2019-08-15T18:13:33.7018090Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7018970Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7019760Z           duplicate symbol __ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17hf3f6d79c6cbddd6dE in:
2019-08-15T18:13:33.7020610Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7021500Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7022280Z           duplicate symbol __ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h13bf829323225a6dE in:
2019-08-15T18:13:33.7023130Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7024020Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7024800Z           duplicate symbol __ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17h2d6bb84f9e5ad75dE in:
2019-08-15T18:13:33.7025650Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7026530Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7027330Z           duplicate symbol __ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17h7f47b52863c0c45dE in:
2019-08-15T18:13:33.7028450Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7029320Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7030170Z           duplicate symbol __ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h7b99dcdb155f1d5cE in:
2019-08-15T18:13:33.7031180Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7032270Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7033080Z           duplicate symbol __ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h96dc58962df29b4cE in:
2019-08-15T18:13:33.7033920Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7034800Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7035570Z           duplicate symbol __ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17hddabba78a5eebabbE in:
2019-08-15T18:13:33.7036430Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7037320Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7038100Z           duplicate symbol __ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17h78344bd01517d09aE in:
2019-08-15T18:13:33.7038950Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7039810Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7040610Z           duplicate symbol __ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17hbdddd8f535857d4aE in:
2019-08-15T18:13:33.7041460Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7042340Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7043140Z           duplicate symbol __ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h10876443845fd259E in:
2019-08-15T18:13:33.7043970Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7044860Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7045650Z           duplicate symbol __ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h6821cd7b9ec85329E in:
2019-08-15T18:13:33.7046750Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7047630Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7048400Z           duplicate symbol __ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17ha8332a47af574a58E in:
2019-08-15T18:13:33.7049440Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7050410Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7051230Z           duplicate symbol __ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h431b992a1522cc08E in:
2019-08-15T18:13:33.7052090Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7052960Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7053760Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h24e75e7b1e302724E in:
2019-08-15T18:13:33.7054620Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7055490Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7056290Z           duplicate symbol __ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17hd91547197e8a77d3E in:
2019-08-15T18:13:33.7057130Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7058020Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7058820Z           duplicate symbol __ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17h2b1ac4aea3edf6b3E in:
2019-08-15T18:13:33.7059670Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7060550Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7061340Z           duplicate symbol __ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17hb3192bf417c300c2E in:
2019-08-15T18:13:33.7062410Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7063310Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7064340Z           duplicate symbol __ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17h67cb5501236b7ab2E in:
2019-08-15T18:13:33.7065210Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7066080Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7067040Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17ha9438d40c7dac952E in:
2019-08-15T18:13:33.7067990Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7068870Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7069670Z           duplicate symbol __ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17hb4e91b4ec155b1f1E in:
2019-08-15T18:13:33.7070520Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7071400Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7072200Z           duplicate symbol __ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17h358524cf51a86111E in:
2019-08-15T18:13:33.7073020Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7073930Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7074720Z           duplicate symbol __ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h5cc70ee5be9621c0E in:
2019-08-15T18:13:33.7075570Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7076460Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T18:13:33.7077230Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T18:13:33.7078110Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T18:13:33.7078990Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_passes-2b8262651039f8c4.rlib(rustc_passes-2b8262651039f8c4.rustc_passes.dzgm0b03-cgu.15.rcgu.o)
2019-08-15T18:13:33.7079770Z           duplicate symbol __ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17hec63496c489874efE in:
2019-08-15T18:13:33.7080630Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7081510Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7082550Z           duplicate symbol __ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17h8c3219d565a54cceE in:
2019-08-15T18:13:33.7083400Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7084250Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7085220Z           duplicate symbol __ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17h17c9f17f07eefc8eE in:
2019-08-15T18:13:33.7086160Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7087040Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7087830Z           duplicate symbol __ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17hf3902cf69990587eE in:
2019-08-15T18:13:33.7088670Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7089550Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7090350Z           duplicate symbol __ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hbbe91a951b58057eE in:
2019-08-15T18:13:33.7091200Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7092180Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7092950Z           duplicate symbol __ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h85dd0407b9e7a52eE in:
2019-08-15T18:13:33.7093820Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7094690Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7095480Z           duplicate symbol __ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17hf3f6d79c6cbddd6dE in:
2019-08-15T18:13:33.7096320Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7097170Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7097970Z           duplicate symbol __ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h13bf829323225a6dE in:
2019-08-15T18:13:33.7098820Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7099670Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7100740Z           duplicate symbol __ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17h2d6bb84f9e5ad75dE in:
2019-08-15T18:13:33.7101570Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7102550Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7103520Z           duplicate symbol __ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17h7f47b52863c0c45dE in:
2019-08-15T18:13:33.7104440Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7105330Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7106090Z           duplicate symbol __ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h7b99dcdb155f1d5cE in:
2019-08-15T18:13:33.7106950Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7107830Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7108620Z           duplicate symbol __ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h96dc58962df29b4cE in:
2019-08-15T18:13:33.7109490Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7110340Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7111130Z           duplicate symbol __ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17hddabba78a5eebabbE in:
2019-08-15T18:13:33.7111980Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7112840Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7113670Z           duplicate symbol __ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17h78344bd01517d09aE in:
2019-08-15T18:13:33.7114500Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7115370Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7116170Z           duplicate symbol __ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17hbdddd8f535857d4aE in:
2019-08-15T18:13:33.7117010Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7117880Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7118910Z           duplicate symbol __ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h10876443845fd259E in:
2019-08-15T18:13:33.7119820Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7120880Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7121730Z           duplicate symbol __ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h6821cd7b9ec85329E in:
2019-08-15T18:13:33.7122590Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7123470Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7124240Z           duplicate symbol __ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17ha8332a47af574a58E in:
2019-08-15T18:13:33.7125090Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7125950Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7126760Z           duplicate symbol __ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h431b992a1522cc08E in:
2019-08-15T18:13:33.7127630Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7128480Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7129270Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h24e75e7b1e302724E in:
2019-08-15T18:13:33.7130110Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7130990Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7131880Z           duplicate symbol __ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17hd91547197e8a77d3E in:
2019-08-15T18:13:33.7132730Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7133600Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7134380Z           duplicate symbol __ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17h2b1ac4aea3edf6b3E in:
2019-08-15T18:13:33.7135240Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7136090Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7137120Z           duplicate symbol __ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17hb3192bf417c300c2E in:
2019-08-15T18:13:33.7137980Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7139010Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7139890Z           duplicate symbol __ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17h67cb5501236b7ab2E in:
2019-08-15T18:13:33.7140740Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7141620Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7142420Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17ha9438d40c7dac952E in:
2019-08-15T18:13:33.7143240Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7144130Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7144930Z           duplicate symbol __ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17hb4e91b4ec155b1f1E in:
2019-08-15T18:13:33.7145790Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7146660Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7147420Z           duplicate symbol __ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17h358524cf51a86111E in:
2019-08-15T18:13:33.7148290Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7149150Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7149950Z           duplicate symbol __ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h5cc70ee5be9621c0E in:
2019-08-15T18:13:33.7150800Z               /Users/vsts/agent/2.155.1/work/1/s/build/i686-apple-darwin/stage0-rustc/i686-apple-darwin/release/deps/rustc_driver-c45a9c1e6c0ffa52.rustc_driver.7rqkz0f9-cgu.7.rcgu.o
2019-08-15T18:13:33.7151640Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T18:13:33.7152460Z           duplicate symbol __ZN68_$LT$syntax_pos..hygiene..ExpnInfo$u20$as$u20$core..clone..Clone$GT$5clone17hf3174c119aa6151bE in:
2019-08-15T18:13:33.7153310Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.7.rcgu.o)
2019-08-15T18:13:33.7154410Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.11.rcgu.o)
2019-08-15T18:13:33.7155230Z           duplicate symbol __ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hbd13f3a51b431418E in:
2019-08-15T18:13:33.7156050Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.13.rcgu.o)
2019-08-15T18:13:33.7157100Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.11.rcgu.o)
2019-08-15T18:13:33.7157980Z           duplicate symbol __ZN68_$LT$rustc..infer..SubregionOrigin$u20$as$u20$core..clone..Clone$GT$5clone17hfccc5fa2869b5cd4E in:
2019-08-15T18:13:33.7158830Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.15.rcgu.o)
2019-08-15T18:13:33.7159720Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.2.rcgu.o)
2019-08-15T18:13:33.7160510Z           duplicate symbol __ZN81_$LT$rustc..mir..interpret..value..ConstValue$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd4cf3b7a6da8f4e2E in:
2019-08-15T18:13:33.7161390Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.11.rcgu.o)
2019-08-15T18:13:33.7162460Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.7.rcgu.o)
2019-08-15T18:13:33.7163250Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2ne17hd12a732b8e9a2039E in:
2019-08-15T18:13:33.7164130Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.15.rcgu.o)
2019-08-15T18:13:33.7164990Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.8.rcgu.o)
2019-08-15T18:13:33.7165780Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T18:13:33.7166650Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T18:13:33.7167510Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.8.rcgu.o)
2019-08-15T18:13:33.7168930Z           duplicate symbol __ZN63_$LT$rustc..ty..sty..TyKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17he2541fb4583ca005E in:
2019-08-15T18:13:33.7169890Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.15.rcgu.o)
2019-08-15T18:13:33.7170780Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.8.rcgu.o)
2019-08-15T18:13:33.7171610Z           duplicate symbol __ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hbd13f3a51b431418E in:
2019-08-15T18:13:33.7172470Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.13.rcgu.o)
2019-08-15T18:13:33.7173850Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_codegen_ssa-3b61a16096801ec3.rlib(rustc_codegen_ssa-3b61a16096801ec3.rustc_codegen_ssa.cyksskwx-cgu.11.rcgu.o)
2019-08-15T18:13:33.7180390Z           duplicate symbol __ZN68_$LT$syntax_pos..hygiene..ExpnInfo$u20$as$u20$core..clone..Clone$GT$5clone17hf3174c119aa6151bE in:
2019-08-15T18:13:33.7181260Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.7.rcgu.o)
2019-08-15T18:13:33.7182380Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_codegen_ssa-3b61a16096801ec3.rlib(rustc_codegen_ssa-3b61a16096801ec3.rustc_codegen_ssa.cyksskwx-cgu.8.rcgu.o)
2019-08-15T18:13:33.7183260Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T18:13:33.7184150Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T18:13:33.7185040Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_incremental-b5e7a7c31ea738a0.rlib(rustc_incremental-b5e7a7c31ea738a0.rustc_incremental.297ukx4k-cgu.11.rcgu.o)
2019-08-15T18:13:33.7185830Z           duplicate symbol __ZN61_$LT$rustc..ty..Predicate$u20$as$u20$core..cmp..PartialEq$GT$2eq17hc1f86641ad67b518E in:
2019-08-15T18:13:33.7186700Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.13.rcgu.o)
2019-08-15T18:13:33.7187590Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_incremental-b5e7a7c31ea738a0.rlib(rustc_incremental-b5e7a7c31ea738a0.rustc_incremental.297ukx4k-cgu.12.rcgu.o)
2019-08-15T18:13:33.7188420Z           duplicate symbol __ZN68_$LT$syntax_pos..hygiene..ExpnInfo$u20$as$u20$core..clone..Clone$GT$5clone17hf3174c119aa6151bE in:
2019-08-15T18:13:33.7189260Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.7.rcgu.o)
2019-08-15T18:13:33.7190130Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_incremental-b5e7a7c31ea738a0.rlib(rustc_incremental-b5e7a7c31ea738a0.rustc_incremental.297ukx4k-cgu.13.rcgu.o)
2019-08-15T18:13:33.7190990Z           duplicate symbol __ZN88_$LT$rustc..middle..mem_categorization..Categorization$u20$as$u20$core..clone..Clone$GT$5clone17h5af484e4916398b7E in:
2019-08-15T18:13:33.7191860Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.8.rcgu.o)
2019-08-15T18:13:33.7194040Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_ast_borrowck-19adb5065ffa5966.rlib(rustc_ast_borrowck-19adb5065ffa5966.rustc_ast_borrowck.a6opxbk3-cgu.15.rcgu.o)
2019-08-15T18:13:33.7194850Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T18:13:33.7195700Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T18:13:33.7196610Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustc2k5ZJ5/librustc_ast_borrowck-19adb5065ffa5966.rlib(rustc_ast_borrowck-19adb5065ffa5966.rustc_ast_borrowck.a6opxbk3-cgu.8.rcgu.o)
---
2019-08-15T18:13:33.7473580Z == clock drift check ==
2019-08-15T18:13:33.7473650Z   local time: Thu Aug 15 18:13:33 UTC 2019
2019-08-15T18:13:33.7995600Z   network time: Thu, 15 Aug 2019 18:13:33 GMT
2019-08-15T18:13:33.7997660Z == end clock drift check ==
2019-08-15T18:13:33.8175300Z ##[error]Bash exited with code '1'.
2019-08-15T18:13:33.8222140Z ##[section]Starting: Upload CPU usage statistics
2019-08-15T18:13:33.8227580Z ==============================================================================
2019-08-15T18:13:33.8227690Z Task         : Bash
2019-08-15T18:13:33.8227770Z 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
@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:48:37.3073053Z ##[command]git remote add origin https://github.com/rust-lang/rust
2019-08-15T17:48:37.3252795Z ##[command]git config gc.auto 0
2019-08-15T17:48:37.3341183Z ##[command]git config --get-all http.https://github.com/rust-lang/rust.extraheader
2019-08-15T17:48:37.3386117Z ##[command]git config --get-all http.proxy
2019-08-15T17:48:37.3531616Z ##[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/63610/merge:refs/remotes/pull/63610/merge
---
2019-08-15T17:49:12.2086318Z do so (now or later) by using -b with the checkout command again. Example:
2019-08-15T17:49:12.2087461Z 
2019-08-15T17:49:12.2088704Z   git checkout -b <new-branch-name>
2019-08-15T17:49:12.2089880Z 
2019-08-15T17:49:12.2090809Z HEAD is now at 0851c933c Merge 59085746f90566cbaac19ad584b2f1031f1e57b2 into f7af19c279b8b7ea3d2c21fcbd67164af8d5d968
2019-08-15T17:49:12.2233457Z ##[section]Starting: Collect CPU-usage statistics in the background
2019-08-15T17:49:12.2236378Z ==============================================================================
2019-08-15T17:49:12.2236445Z Task         : Bash
2019-08-15T17:49:12.2236484Z Description  : Run a Bash script on macOS, Linux, or Windows
---
2019-08-15T18:13:26.4073462Z    Compiling rustc_privacy v0.0.0 (/checkout/src/librustc_privacy)
2019-08-15T18:14:09.0007485Z    Compiling rustc_codegen_ssa v0.0.0 (/checkout/src/librustc_codegen_ssa)
2019-08-15T18:15:07.3005703Z    Compiling rustc_save_analysis v0.0.0 (/checkout/src/librustc_save_analysis)
2019-08-15T18:15:53.4347494Z    Compiling rustc_interface v0.0.0 (/checkout/src/librustc_interface)
2019-08-15T18:17:59.2418673Z error: linking with `cc` failed: exit code: 1
2019-08-15T18:17:59.2420011Z   |
2019-08-15T18:17:59.2437010Z   = 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-e88965b350f7a39f.rustc_driver.16umytdz-cgu.0.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.1.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.10.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.11.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.12.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.15.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.2.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.3.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.4.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.5.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.6.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.8.rcgu.o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_driver-e88965b350f7a39f.so" "-Wl,--version-script=/tmp/rustcCUrDq2/list" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.48s058ys7ljiehhw.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/rustcCUrDq2/libenv_logger-39812d84bbfe2b11.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libhumantime-d1a9d86e783663fa.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libquick_error-b52ae6e62fe18a00.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libsyntax_ext-90e9c76658c82dc5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_resolve-8ccf886ea32a746d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_privacy-18fed63c49985c01.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_typeck-b37153423d42f561.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_plugin-cc5386d47e5ad4e6.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_passes-bf7cdf9475edf5c2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_mir-9ee82cf0678fc483.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/liblog_settings-2620b484081ec8f2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libeither-be66c1a9963b273c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_codegen_ssa-7b311e775fc309cb.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libtempfile-7dcc5500a694e84f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libremove_dir_all-a10b98c02f91914a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libcc-580cb3ec679a1ef0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_incremental-0d4da432f226d320.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_ast_borrowck-7ffaa31824d70f3d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_save_analysis-4aaa9d9a90eda71c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libserde_json-f180caae537f064f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libryu-17527a943b47993b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libitoa-cafbf9ae61da85d2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_codegen_utils-49a3d3718f35521d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libpunycode-bc98388f5faa9996.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_metadata-2b39375199468164.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libflate2-31c9dbe4de46ec52.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libminiz_sys-829f35f627be716a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libcrc32fast-df4710f26ff3874f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc-c4f47a864935061f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libnum_cpus-d9d9e3d323e05da4.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libmeasureme-fc872d44030f5d93.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libmemmap-1c9c5e21f22b4f63.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libchalk_engine-4d23e955653ea77c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libchalk_macros-1cf2838505f165dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/liblazy_static-2804eceb8314c34d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libfmt_macros-f9c512bf542770a2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_fs_util-048ad9cdb9a5276a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_apfloat-648ce9609f2f81ba.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libbacktrace-fc803759d016563c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libbacktrace_sys-a883b0d3ea617415.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_demangle-cd18ceaeef5d07d4.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libpolonius_engine-852b1ffcf53b21de.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libdatafrog-20da5796e45c2975.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libparking_lot-31476845b241d1d5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libparking_lot_core-43382fa791fab8f0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librand-27220a546062b8dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librand_xorshift-5881699d0271bbca.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librand_pcg-d7ba7a93367d81dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librand_hc-284c64edcaa9062e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librand_chacha-bfd57a2d41977c46.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librand_isaac-8a318270c401df3b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librand_core-1de73f1b5ed833b6.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/liblock_api-e235dde0fbca8f1b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libowning_ref-78f158d03583a646.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/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/rustcCUrDq2/libsyntax-0080eac368865e5b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_lexer-a01a58b026705edc.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_target-cb594209510cba11.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_errors-8f589586108b76d1.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libatty-8ca53ff70731db4a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libannotate_snippets-5f249de6bb711b79.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libsyntax_pos-11641ede3a552b36.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libunicode_width-5402e80272479668.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libarena-e8adb4266d86b522.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libtermcolor-fd219321841f006e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libproc_macro-ca397c4659406be4.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_data_structures-8448c0e13624c15f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libena-093aaf0cc374bff5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libstable_deref_trait-646a1f04f6a5aa32.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libgraphviz-ba0ef3f480884f4f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libjobserver-07e1d0caa31c449b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/liblibc-29f03ed69e612165.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librustc_hash-677da430504940be.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libbyteorder-c65025eaa21b723f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libserialize-aaf3e4552e45992e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libindexmap-0cc18a36b459b67c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libsmallvec-6ed313b2cf4fd8b6.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libscoped_tls-3dc09d8ab059989c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/liblazy_static-4c7ff80308c4e52f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libbitflags-7b5c97f3018774b1.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librls_data-9c386b65968abef2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/librls_span-00e5850e0d24133e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/libserde-c1b899e8f871bdf2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/liblog-6dfac0fdfe7541fc.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcCUrDq2/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-17434b09a331950b" "-Wl,--end-group" "-Wl,-Bstatic" "/tmp/rustcCUrDq2/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-15T18:17:59.2666406Z   = note: /tmp/rustcCUrDq2/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::h4ece6b6a6fdc5a6d':
2019-08-15T18:17:59.2667039Z           env_logger.agm6r3km-cgu.12:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h4ece6b6a6fdc5a6dE+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h4ece6b6a6fdc5a6d'
2019-08-15T18:17:59.2667605Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.8.rcgu.o:rustc_driver.16umytdz-cgu.8:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h4ece6b6a6fdc5a6dE+0x0): first defined here
2019-08-15T18:17:59.2668427Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.12.rcgu.o): In function `_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$::clone::h778ae7abe68244c3':
2019-08-15T18:17:59.2669185Z           rustc_interface.2x62tjgj-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-15T18:17:59.2669745Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.15.rcgu.o:rustc_driver.16umytdz-cgu.15:(.text._ZN59_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$5clone17h778ae7abe68244c3E+0x0): first defined here
2019-08-15T18:17:59.2670210Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.12.rcgu.o): In function `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::haee21ac1c049252d':
2019-08-15T18:17:59.2670700Z           rustc_interface.2x62tjgj-cgu.12:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17haee21ac1c049252dE+0x0): multiple definition of `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::haee21ac1c049252d'
2019-08-15T18:17:59.2671230Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.8.rcgu.o:rustc_driver.16umytdz-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17haee21ac1c049252dE+0x0): first defined here
2019-08-15T18:17:59.2671690Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.12.rcgu.o): In function `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::haee21ac1c049252d':
2019-08-15T18:17:59.2672300Z           rustc_interface.2x62tjgj-cgu.12:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17haee21ac1c049252dE+0x0): multiple definition of `_$LT$rustc..dep_graph..serialized..SerializedDepNodeIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h0169134d0f5776dd'
2019-08-15T18:17:59.2672834Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.8.rcgu.o:rustc_driver.16umytdz-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17haee21ac1c049252dE+0x0): first defined here
2019-08-15T18:17:59.2673283Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h59d19b3ac716d1fc':
2019-08-15T18:17:59.2673741Z           rustc_interface.2x62tjgj-cgu.14:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h59d19b3ac716d1fcE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h59d19b3ac716d1fc'
2019-08-15T18:17:59.2674834Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h59d19b3ac716d1fcE+0x0): first defined here
2019-08-15T18:17:59.2675342Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$::clone::h981793ca0380598e':
2019-08-15T18:17:59.2675861Z           rustc_interface.2x62tjgj-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-15T18:17:59.2676518Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.5.rcgu.o:rustc_driver.16umytdz-cgu.5:(.text._ZN64_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$5clone17h981793ca0380598eE+0x0): first defined here
2019-08-15T18:17:59.2682963Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T18:17:59.2714817Z           rustc_interface.2x62tjgj-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-15T18:17:59.2715436Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.5.rcgu.o:rustc_driver.16umytdz-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T18:17:59.2715953Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h59e35791fa37666b':
2019-08-15T18:17:59.2716636Z           rustc_interface.2x62tjgj-cgu.14:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h59e35791fa37666bE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h59e35791fa37666b'
2019-08-15T18:17:59.2717198Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h59e35791fa37666bE+0x0): first defined here
2019-08-15T18:17:59.2717850Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o): In function `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h4ece6b6a6fdc5a6d':
2019-08-15T18:17:59.2718470Z           rustc_interface.2x62tjgj-cgu.14:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h4ece6b6a6fdc5a6dE+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h4ece6b6a6fdc5a6d'
2019-08-15T18:17:59.2719012Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.8.rcgu.o:rustc_driver.16umytdz-cgu.8:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h4ece6b6a6fdc5a6dE+0x0): first defined here
2019-08-15T18:17:59.2719476Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h79de501ef9f8dd8a':
2019-08-15T18:17:59.2720266Z           rustc_interface.2x62tjgj-cgu.14:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h79de501ef9f8dd8aE+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h79de501ef9f8dd8a'
2019-08-15T18:17:59.2720896Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h79de501ef9f8dd8aE+0x0): first defined here
2019-08-15T18:17:59.2721369Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o): In function `_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$::clone::hfca5f67e5bdde432':
2019-08-15T18:17:59.2722029Z           rustc_interface.2x62tjgj-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-15T18:17:59.2722597Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-cgu.14:(.text._ZN67_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$5clone17hfca5f67e5bdde432E+0x0): first defined here
2019-08-15T18:17:59.2723062Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::h22eb77d599707442':
2019-08-15T18:17:59.2723556Z           rustc_interface.2x62tjgj-cgu.14:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22eb77d599707442E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::h22eb77d599707442'
2019-08-15T18:17:59.2724761Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22eb77d599707442E+0x0): first defined here
2019-08-15T18:17:59.2725258Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565':
2019-08-15T18:17:59.2725767Z           rustc_interface.2x62tjgj-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::h74d79c6de60898ab'
2019-08-15T18:17:59.2726331Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h74d79c6de60898abE+0x0): first defined here
2019-08-15T18:17:59.2727140Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h61211c6648ad4f92':
2019-08-15T18:17:59.2727955Z           rustc_interface.2x62tjgj-cgu.14:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h61211c6648ad4f92E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h61211c6648ad4f92'
2019-08-15T18:17:59.2728679Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h61211c6648ad4f92E+0x0): first defined here
2019-08-15T18:17:59.2729258Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd0f7176107ad1c38':
2019-08-15T18:17:59.2729761Z           rustc_interface.2x62tjgj-cgu.14:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd0f7176107ad1c38E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd0f7176107ad1c38'
2019-08-15T18:17:59.2730299Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd0f7176107ad1c38E+0x0): first defined here
2019-08-15T18:17:59.2730769Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.15.rcgu.o): In function `_$LT$core..any..TypeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h67bf702b545a74f8':
2019-08-15T18:17:59.2731365Z           rustc_interface.2x62tjgj-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-15T18:17:59.2731877Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-cgu.14:(.text._ZN58_$LT$core..any..TypeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h67bf702b545a74f8E+0x0): first defined here
2019-08-15T18:17:59.2732414Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.15.rcgu.o): In function `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h3e648889d77ff873':
2019-08-15T18:17:59.2732869Z           rustc_interface.2x62tjgj-cgu.15:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h3e648889d77ff873E+0x0): multiple definition of `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h3e648889d77ff873'
2019-08-15T18:17:59.2733359Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.15.rcgu.o:rustc_driver.16umytdz-cgu.15:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h3e648889d77ff873E+0x0): first defined here
2019-08-15T18:17:59.2733810Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.15.rcgu.o): In function `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a':
2019-08-15T18:17:59.2734861Z           rustc_interface.2x62tjgj-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-15T18:17:59.2735683Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.15.rcgu.o:rustc_driver.16umytdz-cgu.15:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): first defined here
2019-08-15T18:17:59.2736200Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$::clone::h46bb1d0328f119a8':
2019-08-15T18:17:59.2736781Z           rustc_interface.2x62tjgj-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-15T18:17:59.2737389Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o:rustc_driver.16umytdz-cgu.13:(.text._ZN64_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$5clone17h46bb1d0328f119a8E+0x0): first defined here
2019-08-15T18:17:59.2738019Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.15.rcgu.o): In function `_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$::clone::h64e1b3829bdeb7ce':
2019-08-15T18:17:59.2738493Z           rustc_interface.2x62tjgj-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-15T18:17:59.2739004Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T18:17:59.2739430Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.15.rcgu.o): In function `_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$::clone::h82fb3d75c514fc5b':
2019-08-15T18:17:59.2739985Z           rustc_interface.2x62tjgj-cgu.15:(.text._ZN65_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$5clone17h82fb3d75c514fc5bE+0x0): multiple definition of `_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$::clone::h82fb3d75c514fc5b'
2019-08-15T18:17:59.2740494Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-cgu.14:(.text._ZN65_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$5clone17h82fb3d75c514fc5bE+0x0): first defined here
2019-08-15T18:17:59.2741102Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$::clone::hf71f87b0dd79d485':
2019-08-15T18:17:59.2741743Z           rustc_interface.2x62tjgj-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-15T18:17:59.2742876Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o:rustc_driver.16umytdz-cgu.13:(.text._ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17hf71f87b0dd79d485E+0x0): first defined here
2019-08-15T18:17:59.2743563Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.15.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T18:17:59.2744065Z           rustc_interface.2x62tjgj-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-15T18:17:59.2744980Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T18:17:59.2745519Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$::clone::h26345023f52bea36':
2019-08-15T18:17:59.2746032Z           rustc_interface.2x62tjgj-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-15T18:17:59.2750229Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o:rustc_driver.16umytdz-cgu.13:(.text._ZN71_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$5clone17h26345023f52bea36E+0x0): first defined here
2019-08-15T18:17:59.2751555Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.15.rcgu.o): In function `_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$::clone::h7c1b0aa48e35fa89':
2019-08-15T18:17:59.2753521Z           rustc_interface.2x62tjgj-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-15T18:17:59.2757332Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o:rustc_driver.16umytdz-cgu.13:(.text._ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h7c1b0aa48e35fa89E+0x0): first defined here
2019-08-15T18:17:59.2759327Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$::clone::ha7af95504ad1d484':
2019-08-15T18:17:59.2761270Z           rustc_interface.2x62tjgj-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-15T18:17:59.2763211Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17ha7af95504ad1d484E+0x0): first defined here
2019-08-15T18:17:59.2765446Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$::clone::h2d3bf25f42fb716c':
2019-08-15T18:17:59.2767278Z           rustc_interface.2x62tjgj-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-15T18:17:59.2769624Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17h2d3bf25f42fb716cE+0x0): first defined here
2019-08-15T18:17:59.2771609Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$::clone::hf7eacee7f5b97729':
2019-08-15T18:17:59.2773995Z           rustc_interface.2x62tjgj-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-15T18:17:59.2788554Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17hf7eacee7f5b97729E+0x0): first defined here
2019-08-15T18:17:59.2789413Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$::clone::h56fd2ce728c4a0c4':
2019-08-15T18:17:59.2790049Z           rustc_interface.2x62tjgj-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-15T18:17:59.2790776Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN55_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$5clone17h56fd2ce728c4a0c4E+0x0): first defined here
2019-08-15T18:17:59.2791483Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$::clone::h6bd3ab1021f0941b':
2019-08-15T18:17:59.2791977Z           rustc_interface.2x62tjgj-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-15T18:17:59.2792514Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h6bd3ab1021f0941bE+0x0): first defined here
2019-08-15T18:17:59.2793018Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$::clone::h2235ccd7c25d950e':
2019-08-15T18:17:59.2793495Z           rustc_interface.2x62tjgj-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-15T18:17:59.2794060Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17h2235ccd7c25d950eE+0x0): first defined here
2019-08-15T18:17:59.2794839Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$::clone::h4b6e1c0b1090f1c6':
2019-08-15T18:17:59.2795454Z           rustc_interface.2x62tjgj-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-15T18:17:59.2796054Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h4b6e1c0b1090f1c6E+0x0): first defined here
2019-08-15T18:17:59.2796524Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$::clone::h8ce49d7fe24aea62':
2019-08-15T18:17:59.2797026Z           rustc_interface.2x62tjgj-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-15T18:17:59.2797737Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN56_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$5clone17h8ce49d7fe24aea62E+0x0): first defined here
2019-08-15T18:17:59.2798545Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$::clone::hd6df610aef6e2918':
2019-08-15T18:17:59.2799068Z           rustc_interface.2x62tjgj-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-15T18:17:59.2799584Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17hd6df610aef6e2918E+0x0): first defined here
2019-08-15T18:17:59.2800161Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$::clone::h37d4df313f0d3a6d':
2019-08-15T18:17:59.2800770Z           rustc_interface.2x62tjgj-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-15T18:17:59.2801276Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN57_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$5clone17h37d4df313f0d3a6dE+0x0): first defined here
2019-08-15T18:17:59.2801722Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$::clone::h319f9f8f49136073':
2019-08-15T18:17:59.2802150Z           rustc_interface.2x62tjgj-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-15T18:17:59.2802751Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h319f9f8f49136073E+0x0): first defined here
2019-08-15T18:17:59.2803217Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$::clone::hd5e4433c65aea665':
2019-08-15T18:17:59.2803646Z           rustc_interface.2x62tjgj-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-15T18:17:59.2804729Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17hd5e4433c65aea665E+0x0): first defined here
2019-08-15T18:17:59.2805223Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$::clone::h3a1cb7973604aa7c':
2019-08-15T18:17:59.2805718Z           rustc_interface.2x62tjgj-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-15T18:17:59.2806258Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17h3a1cb7973604aa7cE+0x0): first defined here
2019-08-15T18:17:59.2806886Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$::clone::hfa3796e093c0cf87':
2019-08-15T18:17:59.2807371Z           rustc_interface.2x62tjgj-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-15T18:17:59.2808057Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17hfa3796e093c0cf87E+0x0): first defined here
2019-08-15T18:17:59.2808482Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$::clone::h464cdfe8607b2196':
2019-08-15T18:17:59.2808918Z           rustc_interface.2x62tjgj-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-15T18:17:59.2809408Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h464cdfe8607b2196E+0x0): first defined here
2019-08-15T18:17:59.2809830Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$::clone::hc13b5ac7d3e09b83':
2019-08-15T18:17:59.2810337Z           rustc_interface.2x62tjgj-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-15T18:17:59.2810840Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN60_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$5clone17hc13b5ac7d3e09b83E+0x0): first defined here
2019-08-15T18:17:59.2811288Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$::clone::h81b70c43366e7a2a':
2019-08-15T18:17:59.2811729Z           rustc_interface.2x62tjgj-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-15T18:17:59.2812207Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h81b70c43366e7a2aE+0x0): first defined here
2019-08-15T18:17:59.2812631Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$::clone::hab38708faef80148':
2019-08-15T18:17:59.2813153Z           rustc_interface.2x62tjgj-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-15T18:17:59.2813655Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17hab38708faef80148E+0x0): first defined here
2019-08-15T18:17:59.2814248Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$::clone::h8bc19b5f05f0901d':
2019-08-15T18:17:59.2814961Z           rustc_interface.2x62tjgj-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-15T18:17:59.2815535Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h8bc19b5f05f0901dE+0x0): first defined here
2019-08-15T18:17:59.2816008Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$::clone::h657ae1118b352aad':
2019-08-15T18:17:59.2816520Z           rustc_interface.2x62tjgj-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-15T18:17:59.2817182Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17h657ae1118b352aadE+0x0): first defined here
2019-08-15T18:17:59.2817837Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$::clone::h8c9cac8f2ca45eb7':
2019-08-15T18:17:59.2818273Z           rustc_interface.2x62tjgj-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-15T18:17:59.2818765Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN61_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$5clone17h8c9cac8f2ca45eb7E+0x0): first defined here
2019-08-15T18:17:59.2819199Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$::clone::hba83b6457ba96a9d':
2019-08-15T18:17:59.2819633Z           rustc_interface.2x62tjgj-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-15T18:17:59.2820219Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17hba83b6457ba96a9dE+0x0): first defined here
2019-08-15T18:17:59.2820655Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc8ffc6cddda037f':
2019-08-15T18:17:59.2821067Z           rustc_interface.2x62tjgj-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-15T18:17:59.2821569Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc8ffc6cddda037fE+0x0): first defined here
2019-08-15T18:17:59.2822581Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$::clone::he03072ea426998be':
2019-08-15T18:17:59.2823047Z           rustc_interface.2x62tjgj-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-15T18:17:59.2823593Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17he03072ea426998beE+0x0): first defined here
2019-08-15T18:17:59.2824517Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc763300301e91f0':
2019-08-15T18:17:59.2825113Z           rustc_interface.2x62tjgj-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-15T18:17:59.2825683Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc763300301e91f0E+0x0): first defined here
2019-08-15T18:17:59.2826177Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$::clone::hf79c5c5c090f1856':
2019-08-15T18:17:59.2826686Z           rustc_interface.2x62tjgj-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-15T18:17:59.2827236Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hf79c5c5c090f1856E+0x0): first defined here
2019-08-15T18:17:59.2827858Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$::clone::hc4a4bb7b01687475':
2019-08-15T18:17:59.2828520Z           rustc_interface.2x62tjgj-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-15T18:17:59.2829052Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN63_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$5clone17hc4a4bb7b01687475E+0x0): first defined here
2019-08-15T18:17:59.2829702Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$::clone::h7948d4049cac020a':
2019-08-15T18:17:59.2830158Z           rustc_interface.2x62tjgj-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-15T18:17:59.2830686Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h7948d4049cac020aE+0x0): first defined here
2019-08-15T18:17:59.2831159Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$::clone::hafa3fec4dbe4ef36':
2019-08-15T18:17:59.2831850Z           rustc_interface.2x62tjgj-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-15T18:17:59.2832394Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17hafa3fec4dbe4ef36E+0x0): first defined here
2019-08-15T18:17:59.2832841Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$::clone::h60036ab162659d98':
2019-08-15T18:17:59.2833486Z           rustc_interface.2x62tjgj-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-15T18:17:59.2834891Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h60036ab162659d98E+0x0): first defined here
2019-08-15T18:17:59.2835413Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$::clone::hfc6d21363c24b4f6':
2019-08-15T18:17:59.2836079Z           rustc_interface.2x62tjgj-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-15T18:17:59.2836653Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN64_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$5clone17hfc6d21363c24b4f6E+0x0): first defined here
2019-08-15T18:17:59.2837131Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$::clone::he7ae39b89981b0d1':
2019-08-15T18:17:59.2838406Z           rustc_interface.2x62tjgj-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-15T18:17:59.2838994Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17he7ae39b89981b0d1E+0x0): first defined here
2019-08-15T18:17:59.2839928Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$::clone::h17a5688fdaffdb67':
2019-08-15T18:17:59.2840470Z           rustc_interface.2x62tjgj-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-15T18:17:59.2841151Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17h17a5688fdaffdb67E+0x0): first defined here
2019-08-15T18:17:59.2841700Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$::clone::h7eebfa4f376eb15d':
2019-08-15T18:17:59.2842200Z           rustc_interface.2x62tjgj-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-15T18:17:59.2842781Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN67_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$5clone17h7eebfa4f376eb15dE+0x0): first defined here
2019-08-15T18:17:59.2843283Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$::clone::h369aa04e0a6d4f57':
2019-08-15T18:17:59.2843778Z           rustc_interface.2x62tjgj-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-15T18:17:59.2844728Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17h369aa04e0a6d4f57E+0x0): first defined here
2019-08-15T18:17:59.2845222Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o): In function `_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$::clone::hc3f4e86384dc6ab4':
2019-08-15T18:17:59.2845747Z           rustc_interface.2x62tjgj-cgu.4:(.text._ZN73_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$5clone17hc3f4e86384dc6ab4E+0x0): multiple definition of `_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$::clone::hc3f4e86384dc6ab4'
2019-08-15T18:17:59.2846346Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN73_$LT$rustc..util..common..ErrorReported$u20$as$u20$core..clone..Clone$GT$5clone17hc3f4e86384dc6ab4E+0x0): first defined here
2019-08-15T18:17:59.2846818Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.5.rcgu.o): In function `_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$::clone::h451e666eb816665f':
2019-08-15T18:17:59.2847306Z           rustc_interface.2x62tjgj-cgu.5:(.text._ZN57_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$5clone17h451e666eb816665fE+0x0): multiple definition of `_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$::clone::h451e666eb816665f'
2019-08-15T18:17:59.2847967Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o:rustc_driver.16umytdz-cgu.13:(.text._ZN57_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$5clone17h451e666eb816665fE+0x0): first defined here
2019-08-15T18:17:59.2848489Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.5.rcgu.o): In function `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4':
2019-08-15T18:17:59.2848980Z           rustc_interface.2x62tjgj-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-15T18:17:59.2853906Z           /tmp/rustcCUrDq2/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-15T18:17:59.2854876Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$::clone::h1a06559b6eef647e':
2019-08-15T18:17:59.2855384Z           rustc_interface.2x62tjgj-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-15T18:17:59.2855951Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T18:17:59.2856618Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$::clone::h27a2cfc534fd3a5c':
2019-08-15T18:17:59.2857141Z           rustc_interface.2x62tjgj-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-15T18:17:59.2857721Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN69_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$5clone17h27a2cfc534fd3a5cE+0x0): first defined here
2019-08-15T18:17:59.2858224Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286':
2019-08-15T18:17:59.2858746Z           rustc_interface.2x62tjgj-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-15T18:17:59.2859320Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): first defined here
2019-08-15T18:17:59.2859815Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.7.rcgu.o): In function `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50':
2019-08-15T18:17:59.2860426Z           rustc_interface.2x62tjgj-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-15T18:17:59.2861020Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-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-15T18:17:59.2861553Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.7.rcgu.o): In function `_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8410e18c68afaf77':
2019-08-15T18:17:59.2862296Z           rustc_interface.2x62tjgj-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-15T18:17:59.2863036Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.15.rcgu.o:rustc_driver.16umytdz-cgu.15:(.text._ZN88_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8410e18c68afaf77E+0x0): first defined here
2019-08-15T18:17:59.2865574Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.8.rcgu.o): In function `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::h31dbaaad24ea531c':
2019-08-15T18:17:59.2866084Z           rustc_interface.2x62tjgj-cgu.8:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17h31dbaaad24ea531cE+0x0): multiple definition of `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::h31dbaaad24ea531c'
2019-08-15T18:17:59.2866664Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o:rustc_driver.16umytdz-cgu.13:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17h31dbaaad24ea531cE+0x0): first defined here
2019-08-15T18:17:59.2867150Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.10.rcgu.o): In function `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h3e648889d77ff873':
2019-08-15T18:17:59.2867786Z           rustc_lint.efqahgby-cgu.10:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h3e648889d77ff873E+0x0): multiple definition of `_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h3e648889d77ff873'
2019-08-15T18:17:59.2868661Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.15.rcgu.o:rustc_driver.16umytdz-cgu.15:(.text._ZN58_$LT$rustc..hir..HirId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h3e648889d77ff873E+0x0): first defined here
2019-08-15T18:17:59.2869251Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.10.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T18:17:59.2869958Z           rustc_lint.efqahgby-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-15T18:17:59.2870506Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.5.rcgu.o:rustc_driver.16umytdz-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T18:17:59.2870923Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.10.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565':
2019-08-15T18:17:59.2871390Z           rustc_lint.efqahgby-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-15T18:17:59.2871878Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o):rustc_interface.2x62tjgj-cgu.14:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): first defined here
2019-08-15T18:17:59.2872316Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.10.rcgu.o): In function `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286':
2019-08-15T18:17:59.2872863Z           rustc_lint.efqahgby-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-15T18:17:59.2873430Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): first defined here
2019-08-15T18:17:59.2873879Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.10.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h61211c6648ad4f92':
2019-08-15T18:17:59.2874880Z           rustc_lint.efqahgby-cgu.10:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h61211c6648ad4f92E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h61211c6648ad4f92'
2019-08-15T18:17:59.2875497Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h61211c6648ad4f92E+0x0): first defined here
2019-08-15T18:17:59.2875966Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.10.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd0f7176107ad1c38':
2019-08-15T18:17:59.2876489Z           rustc_lint.efqahgby-cgu.10:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd0f7176107ad1c38E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd0f7176107ad1c38'
2019-08-15T18:17:59.2877201Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd0f7176107ad1c38E+0x0): first defined here
2019-08-15T18:17:59.2877713Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.11.rcgu.o): In function `_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$::clone::hc4c8ee192556ff68':
2019-08-15T18:17:59.2878528Z           rustc_lint.efqahgby-cgu.11:(.text._ZN76_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$5clone17hc4c8ee192556ff68E+0x0): multiple definition of `_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$::clone::hc4c8ee192556ff68'
2019-08-15T18:17:59.2879035Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.5.rcgu.o):rustc_interface.2x62tjgj-cgu.5:(.text._ZN76_$LT$rustc..ty..context..tls..ImplicitCtxt$u20$as$u20$core..clone..Clone$GT$5clone17hc4c8ee192556ff68E+0x0): first defined here
2019-08-15T18:17:59.2879658Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.13.rcgu.o): In function `_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$::clone::h73e5647031d99818':
2019-08-15T18:17:59.2880298Z           rustc_lint.efqahgby-cgu.13:(.text._ZN58_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$5clone17h73e5647031d99818E+0x0): multiple definition of `_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$::clone::h73e5647031d99818'
2019-08-15T18:17:59.2881284Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.5.rcgu.o):rustc_interface.2x62tjgj-cgu.5:(.text._ZN58_$LT$rustc..ty..ParamEnv$u20$as$u20$core..clone..Clone$GT$5clone17h73e5647031d99818E+0x0): first defined here
2019-08-15T18:17:59.2881753Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.13.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T18:17:59.2882471Z           rustc_lint.efqahgby-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-15T18:17:59.2883049Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T18:17:59.2883701Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.13.rcgu.o): In function `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50':
2019-08-15T18:17:59.2884571Z           rustc_lint.efqahgby-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-15T18:17:59.2885167Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-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-15T18:17:59.2885768Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.15.rcgu.o): In function `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::haee21ac1c049252d':
2019-08-15T18:17:59.2886338Z           rustc_lint.efqahgby-cgu.15:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17haee21ac1c049252dE+0x0): multiple definition of `_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$::eq::haee21ac1c049252d'
2019-08-15T18:17:59.2886909Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.8.rcgu.o:rustc_driver.16umytdz-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17haee21ac1c049252dE+0x0): first defined here
2019-08-15T18:17:59.2887409Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.2.rcgu.o): In function `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::h31dbaaad24ea531c':
2019-08-15T18:17:59.2888367Z           rustc_lint.efqahgby-cgu.2:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17h31dbaaad24ea531cE+0x0): multiple definition of `_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$::clone::h31dbaaad24ea531c'
2019-08-15T18:17:59.2889043Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o:rustc_driver.16umytdz-cgu.13:(.text._ZN65_$LT$rustc..ty..context..TyCtxt$u20$as$u20$core..clone..Clone$GT$5clone17h31dbaaad24ea531cE+0x0): first defined here
2019-08-15T18:17:59.2889550Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.5.rcgu.o): In function `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4':
2019-08-15T18:17:59.2889970Z           rustc_lint.efqahgby-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-15T18:17:59.2890430Z           /tmp/rustcCUrDq2/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-15T18:17:59.2890819Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.5.rcgu.o): In function `_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$::gt::hbc62750dd2c847bf':
2019-08-15T18:17:59.2891264Z           rustc_lint.efqahgby-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-15T18:17:59.2891741Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.15.rcgu.o:rustc_driver.16umytdz-cgu.15:(.text._ZN61_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$2gt17hbc62750dd2c847bfE+0x0): first defined here
2019-08-15T18:17:59.2892159Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h59d19b3ac716d1fc':
2019-08-15T18:17:59.2892586Z           rustc_lint.efqahgby-cgu.5:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h59d19b3ac716d1fcE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h59d19b3ac716d1fc'
2019-08-15T18:17:59.2893148Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h59d19b3ac716d1fcE+0x0): first defined here
2019-08-15T18:17:59.2893590Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h59e35791fa37666b':
2019-08-15T18:17:59.2894019Z           rustc_lint.efqahgby-cgu.5:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h59e35791fa37666bE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h59e35791fa37666b'
2019-08-15T18:17:59.2895052Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h59e35791fa37666bE+0x0): first defined here
2019-08-15T18:17:59.2895539Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h79de501ef9f8dd8a':
2019-08-15T18:17:59.2896029Z           rustc_lint.efqahgby-cgu.5:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h79de501ef9f8dd8aE+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$::clone::h79de501ef9f8dd8a'
2019-08-15T18:17:59.2896749Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN67_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..clone..Clone$GT$5clone17h79de501ef9f8dd8aE+0x0): first defined here
2019-08-15T18:17:59.2897213Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::h22eb77d599707442':
2019-08-15T18:17:59.2897877Z           rustc_lint.efqahgby-cgu.5:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22eb77d599707442E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::h22eb77d599707442'
2019-08-15T18:17:59.2898566Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22eb77d599707442E+0x0): first defined here
2019-08-15T18:17:59.2898968Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.5.rcgu.o): In function `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h74d79c6de60898ab':
2019-08-15T18:17:59.2899403Z           rustc_lint.efqahgby-cgu.5:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h74d79c6de60898abE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h74d79c6de60898ab'
2019-08-15T18:17:59.2899892Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h74d79c6de60898abE+0x0): first defined here
2019-08-15T18:17:59.2900397Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.5.rcgu.o): In function `_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$::clone::hbbda12b24bb7da49':
2019-08-15T18:17:59.2900894Z           rustc_lint.efqahgby-cgu.5:(.text._ZN87_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$5clone17hbbda12b24bb7da49E+0x0): multiple definition of `_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$::clone::hbbda12b24bb7da49'
2019-08-15T18:17:59.2901395Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.15.rcgu.o):rustc_interface.2x62tjgj-cgu.15:(.text._ZN87_$LT$rustc..ty..query..on_disk_cache..AbsoluteBytePos$u20$as$u20$core..clone..Clone$GT$5clone17hbbda12b24bb7da49E+0x0): first defined here
2019-08-15T18:17:59.2901961Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.7.rcgu.o): In function `_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$::eq::h8410e18c68afaf77':
2019-08-15T18:17:59.2902945Z           rustc_lint.efqahgby-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-15T18:17:59.2903688Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.15.rcgu.o:rustc_driver.16umytdz-cgu.15:(.text._ZN88_$LT$rustc_data_structures..fingerprint..Fingerprint$u20$as$u20$core..cmp..PartialEq$GT$2eq17h8410e18c68afaf77E+0x0): first defined here
2019-08-15T18:17:59.2904521Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.7.rcgu.o): In function `_$LT$syntax_pos..hygiene..SyntaxContext$u20$as$u20$core..cmp..PartialEq$GT$::eq::hf801b3b65e9ba545':
2019-08-15T18:17:59.2905071Z           rustc_lint.efqahgby-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::h0169134d0f5776dd'
2019-08-15T18:17:59.2905677Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.8.rcgu.o:rustc_driver.16umytdz-cgu.8:(.text._ZN85_$LT$rustc..hir..item_local_id_inner..ItemLocalId$u20$as$u20$core..cmp..PartialEq$GT$2eq17haee21ac1c049252dE+0x0): first defined here
2019-08-15T18:17:59.2906162Z           /tmp/rustcCUrDq2/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-15T18:17:59.2906629Z           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-15T18:17:59.2907178Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17ha7af95504ad1d484E+0x0): first defined here
2019-08-15T18:17:59.2907912Z           /tmp/rustcCUrDq2/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-15T18:17:59.2908396Z           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-15T18:17:59.2909050Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17h2d3bf25f42fb716cE+0x0): first defined here
2019-08-15T18:17:59.2909492Z           /tmp/rustcCUrDq2/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-15T18:17:59.2909912Z           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-15T18:17:59.2910417Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17hf7eacee7f5b97729E+0x0): first defined here
2019-08-15T18:17:59.2911110Z           /tmp/rustcCUrDq2/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-15T18:17:59.2911526Z           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-15T18:17:59.2912349Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN55_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$5clone17h56fd2ce728c4a0c4E+0x0): first defined here
2019-08-15T18:17:59.2913503Z           /tmp/rustcCUrDq2/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-15T18:17:59.2914033Z           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-15T18:17:59.2914992Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h6bd3ab1021f0941bE+0x0): first defined here
2019-08-15T18:17:59.2915472Z           /tmp/rustcCUrDq2/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-15T18:17:59.2915962Z           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-15T18:17:59.2916871Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17h2235ccd7c25d950eE+0x0): first defined here
2019-08-15T18:17:59.2917473Z           /tmp/rustcCUrDq2/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-15T18:17:59.2918277Z           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-15T18:17:59.2918906Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h4b6e1c0b1090f1c6E+0x0): first defined here
2019-08-15T18:17:59.2919331Z           /tmp/rustcCUrDq2/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-15T18:17:59.2919732Z           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-15T18:17:59.2920329Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN56_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$5clone17h8ce49d7fe24aea62E+0x0): first defined here
2019-08-15T18:17:59.2920732Z           /tmp/rustcCUrDq2/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-15T18:17:59.2921160Z           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-15T18:17:59.2921622Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17hd6df610aef6e2918E+0x0): first defined here
2019-08-15T18:17:59.2922051Z           /tmp/rustcCUrDq2/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-15T18:17:59.2922455Z           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-15T18:17:59.2922946Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN57_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$5clone17h37d4df313f0d3a6dE+0x0): first defined here
2019-08-15T18:17:59.2923564Z           /tmp/rustcCUrDq2/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-15T18:17:59.2924751Z           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-15T18:17:59.2925590Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h319f9f8f49136073E+0x0): first defined here
2019-08-15T18:17:59.2926069Z           /tmp/rustcCUrDq2/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-15T18:17:59.2926565Z           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-15T18:17:59.2927103Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17hd5e4433c65aea665E+0x0): first defined here
2019-08-15T18:17:59.2927579Z           /tmp/rustcCUrDq2/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-15T18:17:59.2928298Z           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-15T18:17:59.2928808Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17h3a1cb7973604aa7cE+0x0): first defined here
2019-08-15T18:17:59.2929219Z           /tmp/rustcCUrDq2/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-15T18:17:59.2929834Z           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-15T18:17:59.2930334Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17hfa3796e093c0cf87E+0x0): first defined here
2019-08-15T18:17:59.2930738Z           /tmp/rustcCUrDq2/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-15T18:17:59.2931172Z           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-15T18:17:59.2931731Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h464cdfe8607b2196E+0x0): first defined here
2019-08-15T18:17:59.2932182Z           /tmp/rustcCUrDq2/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-15T18:17:59.2932609Z           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-15T18:17:59.2933101Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN60_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$5clone17hc13b5ac7d3e09b83E+0x0): first defined here
2019-08-15T18:17:59.2933527Z           /tmp/rustcCUrDq2/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-15T18:17:59.2933937Z           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-15T18:17:59.2934981Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h81b70c43366e7a2aE+0x0): first defined here
2019-08-15T18:17:59.2939595Z           /tmp/rustcCUrDq2/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-15T18:17:59.2940055Z           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-15T18:17:59.2940555Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17hab38708faef80148E+0x0): first defined here
2019-08-15T18:17:59.2940976Z           /tmp/rustcCUrDq2/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-15T18:17:59.2941410Z           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-15T18:17:59.2942049Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h8bc19b5f05f0901dE+0x0): first defined here
2019-08-15T18:17:59.2942691Z           /tmp/rustcCUrDq2/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-15T18:17:59.2943291Z           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-15T18:17:59.2943795Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o):rustc_interface.2x62tjgj-cgu.4:(.text._ZN60_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$5clone17hf797b7e40c65838cE+0x0): first defined here
2019-08-15T18:17:59.2944668Z           /tmp/rustcCUrDq2/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-15T18:17:59.2945183Z           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-15T18:17:59.2945758Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17h657ae1118b352aadE+0x0): first defined here
2019-08-15T18:17:59.2946218Z           /tmp/rustcCUrDq2/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-15T18:17:59.2946872Z           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-15T18:17:59.2947420Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o):rustc_interface.2x62tjgj-cgu.4:(.text._ZN61_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$5clone17h9ac1f644ed52bca2E+0x0): first defined here
2019-08-15T18:17:59.2948217Z           /tmp/rustcCUrDq2/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-15T18:17:59.2948660Z           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-15T18:17:59.2949134Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN61_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$5clone17h8c9cac8f2ca45eb7E+0x0): first defined here
2019-08-15T18:17:59.2949559Z           /tmp/rustcCUrDq2/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-15T18:17:59.2949971Z           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-15T18:17:59.2950561Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17hba83b6457ba96a9dE+0x0): first defined here
2019-08-15T18:17:59.2951005Z           /tmp/rustcCUrDq2/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-15T18:17:59.2951416Z           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-15T18:17:59.2951925Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc8ffc6cddda037fE+0x0): first defined here
2019-08-15T18:17:59.2952328Z           /tmp/rustcCUrDq2/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-15T18:17:59.2952760Z           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-15T18:17:59.2953727Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17he03072ea426998beE+0x0): first defined here
2019-08-15T18:17:59.2954541Z           /tmp/rustcCUrDq2/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-15T18:17:59.2968816Z           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-15T18:17:59.2969328Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.10.rcgu.o):rustc_lint.efqahgby-cgu.10:(.text._ZN62_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$2eq17hc847be027b7299e6E+0x0): first defined here
2019-08-15T18:17:59.2969797Z           /tmp/rustcCUrDq2/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-15T18:17:59.2970217Z           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-15T18:17:59.2970765Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc763300301e91f0E+0x0): first defined here
2019-08-15T18:17:59.2971547Z           /tmp/rustcCUrDq2/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-15T18:17:59.2972120Z           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-15T18:17:59.2976001Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hf79c5c5c090f1856E+0x0): first defined here
2019-08-15T18:17:59.2976817Z           /tmp/rustcCUrDq2/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-15T18:17:59.2977354Z           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-15T18:17:59.2978591Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN63_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$5clone17hc4a4bb7b01687475E+0x0): first defined here
2019-08-15T18:17:59.2979193Z           /tmp/rustcCUrDq2/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-15T18:17:59.2979658Z           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-15T18:17:59.2980157Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h7948d4049cac020aE+0x0): first defined here
2019-08-15T18:17:59.2980595Z           /tmp/rustcCUrDq2/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-15T18:17:59.2981035Z           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-15T18:17:59.2981557Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17hafa3fec4dbe4ef36E+0x0): first defined here
2019-08-15T18:17:59.2982311Z           /tmp/rustcCUrDq2/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-15T18:17:59.2982758Z           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-15T18:17:59.2983363Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h60036ab162659d98E+0x0): first defined here
2019-08-15T18:17:59.2984005Z           /tmp/rustcCUrDq2/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-15T18:17:59.2985132Z           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-15T18:17:59.2986187Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN64_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$5clone17hfc6d21363c24b4f6E+0x0): first defined here
2019-08-15T18:17:59.2986973Z           /tmp/rustcCUrDq2/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-15T18:17:59.2988890Z           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-15T18:17:59.2990125Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17he7ae39b89981b0d1E+0x0): first defined here
2019-08-15T18:17:59.2990604Z           /tmp/rustcCUrDq2/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-15T18:17:59.2991265Z           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-15T18:17:59.2991793Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.4.rcgu.o):rustc_interface.2x62tjgj-cgu.4:(.text._ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h86cbf6b2130f9de0E+0x0): first defined here
2019-08-15T18:17:59.2992271Z           /tmp/rustcCUrDq2/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-15T18:17:59.2992743Z           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-15T18:17:59.2993620Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17h17a5688fdaffdb67E+0x0): first defined here
2019-08-15T18:17:59.2994528Z           /tmp/rustcCUrDq2/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-15T18:17:59.2995108Z           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-15T18:17:59.2995689Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN67_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$5clone17h7eebfa4f376eb15dE+0x0): first defined here
2019-08-15T18:17:59.2996179Z           /tmp/rustcCUrDq2/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-15T18:17:59.2996702Z           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-15T18:17:59.2997273Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.7.rcgu.o:rustc_driver.16umytdz-cgu.7:(.text._ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17h369aa04e0a6d4f57E+0x0): first defined here
2019-08-15T18:17:59.2998000Z           /tmp/rustcCUrDq2/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-15T18:17:59.2998459Z           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-15T18:17:59.2998961Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o:rustc_driver.16umytdz-cgu.13:(.text._ZN64_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$5clone17h46bb1d0328f119a8E+0x0): first defined here
2019-08-15T18:17:59.2999412Z           /tmp/rustcCUrDq2/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-15T18:17:59.2999874Z           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-15T18:17:59.3000377Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o:rustc_driver.16umytdz-cgu.13:(.text._ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17hf71f87b0dd79d485E+0x0): first defined here
2019-08-15T18:17:59.3000829Z           /tmp/rustcCUrDq2/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-15T18:17:59.3001354Z           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-15T18:17:59.3001915Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o:rustc_driver.16umytdz-cgu.13:(.text._ZN71_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$5clone17h26345023f52bea36E+0x0): first defined here
2019-08-15T18:17:59.3002360Z           /tmp/rustcCUrDq2/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-15T18:17:59.3002829Z           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-15T18:17:59.3003358Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.13.rcgu.o:rustc_driver.16umytdz-cgu.13:(.text._ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h7c1b0aa48e35fa89E+0x0): first defined here
2019-08-15T18:17:59.3003785Z           /tmp/rustcCUrDq2/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-15T18:17:59.3004785Z           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-15T18:17:59.3005381Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-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-15T18:17:59.3005836Z           /tmp/rustcCUrDq2/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-15T18:17:59.3006342Z           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-15T18:17:59.3006900Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.15.rcgu.o:rustc_driver.16umytdz-cgu.15:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): first defined here
2019-08-15T18:17:59.3007391Z           /tmp/rustcCUrDq2/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-15T18:17:59.3008035Z           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-15T18:17:59.3008813Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.5.rcgu.o:rustc_driver.16umytdz-cgu.5:(.text._ZN64_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$5clone17h981793ca0380598eE+0x0): first defined here
2019-08-15T18:17:59.3009302Z           /tmp/rustcCUrDq2/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-15T18:17:59.3009757Z           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-15T18:17:59.3010315Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.5.rcgu.o:rustc_driver.16umytdz-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T18:17:59.3010767Z           /tmp/rustcCUrDq2/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-15T18:17:59.3011221Z           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-15T18:17:59.3011868Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T18:17:59.3012299Z           /tmp/rustcCUrDq2/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-15T18:17:59.3012767Z           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-15T18:17:59.3013290Z           /tmp/rustcCUrDq2/librustc_interface-288b1551118f29d0.rlib(rustc_interface-288b1551118f29d0.rustc_interface.2x62tjgj-cgu.14.rcgu.o):rustc_interface.2x62tjgj-cgu.14:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): first defined here
2019-08-15T18:17:59.3013725Z           /tmp/rustcCUrDq2/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-15T18:17:59.3014559Z           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-15T18:17:59.3015134Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.5.rcgu.o:rustc_driver.16umytdz-cgu.5:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2ne17h7d0d3d988fdeabb8E+0x0): first defined here
2019-08-15T18:17:59.3015725Z           /tmp/rustcCUrDq2/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-15T18:17:59.3016248Z           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-15T18:17:59.3016828Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN69_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$5clone17h27a2cfc534fd3a5cE+0x0): first defined here
2019-08-15T18:17:59.3017334Z           /tmp/rustcCUrDq2/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-15T18:17:59.3017987Z           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-15T18:17:59.3018523Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): first defined here
2019-08-15T18:17:59.3019054Z           /tmp/rustcCUrDq2/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-15T18:17:59.3019523Z           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-15T18:17:59.3020012Z           /tmp/rustcCUrDq2/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-15T18:17:59.3020444Z           /tmp/rustcCUrDq2/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-15T18:17:59.3020908Z           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-15T18:17:59.3021420Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.15.rcgu.o:rustc_driver.16umytdz-cgu.15:(.text._ZN61_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$2gt17hbc62750dd2c847bfE+0x0): first defined here
2019-08-15T18:17:59.3022068Z           /tmp/rustcCUrDq2/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-15T18:17:59.3022891Z           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-15T18:17:59.3024249Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): first defined here
2019-08-15T18:17:59.3025551Z           /tmp/rustcCUrDq2/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::h4ece6b6a6fdc5a6d':
2019-08-15T18:17:59.3026674Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h4ece6b6a6fdc5a6dE+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h4ece6b6a6fdc5a6d'
2019-08-15T18:17:59.3027826Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.8.rcgu.o:rustc_driver.16umytdz-cgu.8:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h4ece6b6a6fdc5a6dE+0x0): first defined here
2019-08-15T18:17:59.3028976Z           /tmp/rustcCUrDq2/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-15T18:17:59.3030185Z           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-15T18:17:59.3031463Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-cgu.14:(.text._ZN67_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$5clone17hfca5f67e5bdde432E+0x0): first defined here
2019-08-15T18:17:59.3032125Z           /tmp/rustcCUrDq2/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-15T18:17:59.3032609Z           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-15T18:17:59.3033151Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T18:17:59.3033618Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.11.rcgu.o): In function `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$::clone::hc25ceb54971b0893':
2019-08-15T18:17:59.3034462Z           rustc_traits.56vhyghc-cgu.11:(.text._ZN68_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$5clone17hc25ceb54971b0893E+0x0): multiple definition of `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$::clone::hc25ceb54971b0893'
2019-08-15T18:17:59.3035044Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.13.rcgu.o):rustc_lint.efqahgby-cgu.13:(.text._ZN68_$LT$rustc..ty..instance..Instance$u20$as$u20$core..clone..Clone$GT$5clone17hc25ceb54971b0893E+0x0): first defined here
2019-08-15T18:17:59.3035652Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.11.rcgu.o): In function `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$::eq::hc7848dce3cf5e742':
2019-08-15T18:17:59.3036178Z           rustc_traits.56vhyghc-cgu.11:(.text._ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hc7848dce3cf5e742E+0x0): multiple definition of `_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$::eq::hc7848dce3cf5e742'
2019-08-15T18:17:59.3036715Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.13.rcgu.o):rustc_lint.efqahgby-cgu.13:(.text._ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hc7848dce3cf5e742E+0x0): first defined here
2019-08-15T18:17:59.3037195Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.11.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T18:17:59.3037932Z           rustc_traits.56vhyghc-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-15T18:17:59.3038660Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-cgu.14:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): first defined here
2019-08-15T18:17:59.3039290Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.11.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h61211c6648ad4f92':
2019-08-15T18:17:59.3039801Z           rustc_traits.56vhyghc-cgu.11:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h61211c6648ad4f92E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::h61211c6648ad4f92'
2019-08-15T18:17:59.3041774Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h61211c6648ad4f92E+0x0): first defined here
2019-08-15T18:17:59.3043960Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.11.rcgu.o): In function `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd0f7176107ad1c38':
2019-08-15T18:17:59.3045956Z           rustc_traits.56vhyghc-cgu.11:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd0f7176107ad1c38E+0x0): multiple definition of `_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd0f7176107ad1c38'
2019-08-15T18:17:59.3046628Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN76_$LT$rustc..dep_graph..dep_node..DepNode$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd0f7176107ad1c38E+0x0): first defined here
2019-08-15T18:17:59.3052062Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$::cmp::hed7440e1368cbc61':
2019-08-15T18:17:59.3056128Z           rustc_traits.56vhyghc-cgu.14:(.text._ZN60_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$3cmp17hed7440e1368cbc61E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$::cmp::hed7440e1368cbc61'
2019-08-15T18:17:59.3056791Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.5.rcgu.o):rustc_lint.efqahgby-cgu.5:(.text._ZN60_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..Ord$GT$3cmp17hed7440e1368cbc61E+0x0): first defined here
2019-08-15T18:17:59.3057278Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.14.rcgu.o): In function `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a':
2019-08-15T18:17:59.3058400Z           rustc_traits.56vhyghc-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-15T18:17:59.3072022Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.15.rcgu.o:rustc_driver.16umytdz-cgu.15:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): first defined here
2019-08-15T18:17:59.3072693Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h59d19b3ac716d1fc':
2019-08-15T18:17:59.3073421Z           rustc_traits.56vhyghc-cgu.14:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h59d19b3ac716d1fcE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$::clone::h59d19b3ac716d1fc'
2019-08-15T18:17:59.3086221Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN64_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..clone..Clone$GT$5clone17h59d19b3ac716d1fcE+0x0): first defined here
2019-08-15T18:17:59.3086928Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.14.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T18:17:59.3087464Z           rustc_traits.56vhyghc-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-15T18:17:59.3088063Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.5.rcgu.o:rustc_driver.16umytdz-cgu.5:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): first defined here
2019-08-15T18:17:59.3088536Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h59e35791fa37666b':
2019-08-15T18:17:59.3089366Z           rustc_traits.56vhyghc-cgu.14:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h59e35791fa37666bE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h59e35791fa37666b'
2019-08-15T18:17:59.3090127Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN66_$LT$rustc..hir..def_id..DefId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h59e35791fa37666bE+0x0): first defined here
2019-08-15T18:17:59.3090658Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::h22eb77d599707442':
2019-08-15T18:17:59.3091178Z           rustc_traits.56vhyghc-cgu.14:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22eb77d599707442E+0x0): multiple definition of `_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$::eq::h22eb77d599707442'
2019-08-15T18:17:59.3091759Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..CrateNum$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22eb77d599707442E+0x0): first defined here
2019-08-15T18:17:59.3092257Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h74d79c6de60898ab':
2019-08-15T18:17:59.3092767Z           rustc_traits.56vhyghc-cgu.14:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h74d79c6de60898abE+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h74d79c6de60898ab'
2019-08-15T18:17:59.3093452Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.9.rcgu.o:rustc_driver.16umytdz-cgu.9:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h74d79c6de60898abE+0x0): first defined here
2019-08-15T18:17:59.3094098Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::ne::hfad5152c9222a507':
2019-08-15T18:17:59.3095010Z           rustc_traits.56vhyghc-cgu.14:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2ne17hfad5152c9222a507E+0x0): multiple definition of `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::ne::hfad5152c9222a507'
2019-08-15T18:17:59.3095574Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.5.rcgu.o):rustc_lint.efqahgby-cgu.5:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2ne17hfad5152c9222a507E+0x0): first defined here
2019-08-15T18:17:59.3096076Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.14.rcgu.o): In function `_$LT$rustc..traits..project..Reveal$u20$as$u20$core..cmp..PartialEq$GT$::eq::h918f3cf1039a2add':
2019-08-15T18:17:59.3096574Z           rustc_traits.56vhyghc-cgu.14:(.text._ZN71_$LT$rustc..traits..project..Reveal$u20$as$u20$core..cmp..PartialEq$GT$2eq17h918f3cf1039a2addE+0x0): multiple definition of `_$LT$rustc..traits..project..Reveal$u20$as$u20$core..cmp..PartialEq$GT$::eq::h918f3cf1039a2add'
2019-08-15T18:17:59.3097108Z           /tmp/rustcCUrDq2/librustc_lint-4ff92fb753e74fba.rlib(rustc_lint-4ff92fb753e74fba.rustc_lint.efqahgby-cgu.7.rcgu.o):rustc_lint.efqahgby-cgu.7:(.text._ZN71_$LT$rustc..traits..project..Reveal$u20$as$u20$core..cmp..PartialEq$GT$2eq17h918f3cf1039a2addE+0x0): first defined here
2019-08-15T18:17:59.3097686Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h74d79c6de60898ab':
2019-08-15T18:17:59.3098242Z           rustc_traits.56vhyghc-cgu.14:(.text._ZN69_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$2eq17h74d79c6de60898abE+0x0): multiple definition of `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50'
2019-08-15T18:17:59.3098806Z           /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/rustc_driver-e88965b350f7a39f.rustc_driver.16umytdz-cgu.14.rcgu.o:rustc_driver.16umytdz-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-15T18:17:59.3099321Z           /tmp/rustcCUrDq2/librustc_traits-64343333d2d27de2.rlib(rustc_traits-64343333d2d27de2.rustc_traits.56vhyghc-cgu.14.rcgu.o): In function `_$LT$rustc..hir..def_id..DefIndex$u20$as$u20$core..cmp..PartialEq$GT$::eq::h74d79c6de60898ab':
---
2019-08-15T18:17:59.5077966Z == clock drift check ==
2019-08-15T18:17:59.5078117Z   local time: Thu Aug 15 18:17:59 UTC 2019
2019-08-15T18:17:59.5078284Z   network time: Thu, 15 Aug 2019 18:17:59 GMT
2019-08-15T18:17:59.5078346Z == end clock drift check ==
2019-08-15T18:18:00.2262766Z ##[error]Bash exited with code '1'.
2019-08-15T18:18:00.2298936Z ##[section]Starting: Checkout
2019-08-15T18:18:00.2300498Z ==============================================================================
2019-08-15T18:18:00.2300545Z Task         : Get sources
2019-08-15T18:18:00.2300585Z 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)

@Centril Centril closed this Aug 15, 2019
@Centril Centril deleted the rollup-et2mw15 branch August 15, 2019 18:20
@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.

6 participants