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 8 pull requests #63603

Closed
wants to merge 31 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 30 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.
This will help reproducible builds, as the sysroot depends on the
working directory.
We now store it in the `Span` of the expression or item.
As suggested by @alexcrichton, the sysroot only loads libraries that
are themselves tracked.
The implementations were wrong and unused.
…hton

Use libunwind from llvm-project submodule for musl targets

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

Opaque builtin derive macros

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

cc rust-lang#60869
r? @petrochenkov
…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
Hash the remapped sysroot instead of the original.

One of the reasons that rustc builds are not reproducible is because the --sysroot path is dependent on the current directory.  We can fix this by hashing the remapped sysroot instead of the original when applicable.

Note that with this patch, the hash will stay the same if both the sysroot and the remapped path change.  However, given that if the contents of the sysroot change the hash will also stay the same, this might be acceptable.  I would appreciate feedback on the best way to do this.

This helps rust-lang#34902, although it does not fix it by itself.
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
… 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=8 rollup=never

@bors
Copy link
Contributor

bors commented Aug 15, 2019

📌 Commit 69a3206 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 69a3206 with merge 8fcc0fd9bef4c655e841dbf0e4d442757d31cc79...

@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-15T16:59:40.4565800Z [RUSTC-TIMING] rustc_save_analysis test:false 62.967
2019-08-15T17:01:51.0639130Z [RUSTC-TIMING] rustc_interface test:false 132.181
2019-08-15T17:02:55.0456320Z [RUSTC-TIMING] rustc_mir test:false 421.744
2019-08-15T17:03:14.7482350Z [RUSTC-TIMING] rustc test:false 741.964
2019-08-15T17:03:44.7941860Z error: linking with `cc` failed: exit code: 1
2019-08-15T17:03:44.7942710Z   |
2019-08-15T17:03:44.7977740Z   = 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/rustcwO6iUr/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/rustcwO6iUr/libenv_logger-4ec36c32ec77a44f.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libhumantime-01ca37002d3c456a.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libquick_error-ba9780bfb2348b1f.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_lint-0b4261b2537ab6c8.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_traits-a915b3b16bb9b6c2.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_privacy-b4ebfe9328da6d19.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_typeck-701a7532a63e4e68.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_passes-2b8262651039f8c4.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/liblog_settings-debc381516e3349f.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libeither-8e58e0bc1db0ad5b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_codegen_ssa-3b61a16096801ec3.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libtempfile-80117fb58091f51e.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libremove_dir_all-8d9a0daaaff594c6.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libcc-bcbb766530349c2c.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_incremental-b5e7a7c31ea738a0.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_ast_borrowck-19adb5065ffa5966.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_save_analysis-f6114030943c0574.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libserde_json-cb0d987548d2ea8e.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libryu-9bf1d71aef9d8334.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libitoa-211a2e8bf1f4127b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_codegen_utils-3587043438bbb7ca.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libpunycode-9495360796084890.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_metadata-724a9a295a487753.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libflate2-cadc5dae0af229fd.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libminiz_sys-9766bc4bc991f068.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libcrc32fast-71a4181d6342e034.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc-24e38b1e655bd6c1.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libnum_cpus-497b6f58805aa3c6.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libmeasureme-5bad591ede1c1ee3.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libmemmap-c068741e9f6fffab.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libchalk_engine-da49662d2c3b622b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libchalk_macros-da38991ff8fcafa7.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/liblazy_static-3d88a3b1591f375f.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libfmt_macros-eded0fd8fe3c5d7c.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_fs_util-10543d055c46b1f5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_apfloat-95c8cfec3e83bade.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libbacktrace-07873cd37c8454c7.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libbacktrace_sys-0cddc675b05214f5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_demangle-63fc923395ada6f4.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libpolonius_engine-56acd4ce50aa88eb.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libdatafrog-a22cd06e3bcc111d.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libparking_lot-fba58629f7934b1d.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libparking_lot_core-33e95735af3d58c4.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librand-73a113aad42a6c7e.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librand_xorshift-e021a1d64746ea49.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librand_pcg-8e1bc025ea7576b5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librand_hc-729341b6daf97abb.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librand_chacha-3c375589193af8d1.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librand_isaac-163acd4abe95d1f2.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librand_core-9599c94739dc6ac6.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/liblock_api-42db1b58b6dd3741.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libowning_ref-8e4e6712deddb317.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/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/rustcwO6iUr/libsyntax-c68c30ac421f7229.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_lexer-039894d1580adccb.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_target-cbb877695c866f88.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_errors-56db0fb53daa7597.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libatty-2a40cb0d9c3ed1c3.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libannotate_snippets-e9665253b7470c56.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_pos-d04a279b0ff5023f.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libunicode_width-1f302255a5ff69ff.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libarena-1d14a3e5bb66a229.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libtermcolor-1c3352cfb1c06446.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libproc_macro-e7857fe6665a84e7.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_data_structures-e2cbf4e834f0e3a9.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libena-7c27a52e27ab3dc5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libstable_deref_trait-4a553c9d074eaa0e.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libgraphviz-277e21503d8cbd39.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libjobserver-c11f486fa183af48.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/liblibc-1761db50408c6630.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_hash-f1a36f7975099cad.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libbyteorder-739945fab3468762.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libserialize-7e58f87bd13c7403.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libindexmap-c3b63b46a28adf8d.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsmallvec-b66eb2fee76e3ea6.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libscoped_tls-4a329ed3d8db0c34.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/liblazy_static-8918de339f32210b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libbitflags-80d329657df0d12c.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librls_data-eb23a22b4a5f24e5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librls_span-429ec2e5ff2a226b.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libserde-76e85b56df612df5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/liblog-d592ff7767820fc5.rlib" "-Wl,-force_load" "-Wl,/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/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-810c0d3bacfa6ec3" "/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/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-15T17:03:44.7988020Z   = 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-15T17:03:44.7989200Z           duplicate symbol __ZN59_$LT$syntax_pos..FileName$u20$as$u20$core..clone..Clone$GT$5clone17hc830f62dbdf02b04E in:
2019-08-15T17:03:44.7990110Z               /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-15T17:03:44.7991030Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.12.rcgu.o)
2019-08-15T17:03:44.7992020Z           duplicate symbol __ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17h2ff67fbe05d925c5E in:
2019-08-15T17:03:44.7992940Z               /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-15T17:03:44.7993870Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.15.rcgu.o)
2019-08-15T17:03:44.7994880Z           duplicate symbol __ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h02b6fb3a00399651E in:
2019-08-15T17:03:44.7995750Z               /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-15T17:03:44.7996700Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.15.rcgu.o)
2019-08-15T17:03:44.7997530Z           duplicate symbol __ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17hec63496c489874efE in:
2019-08-15T17:03:44.7998410Z               /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-15T17:03:44.7999470Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8000290Z           duplicate symbol __ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17h8c3219d565a54cceE in:
2019-08-15T17:03:44.8002190Z               /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-15T17:03:44.8003130Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8003940Z           duplicate symbol __ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17h17c9f17f07eefc8eE in:
2019-08-15T17:03:44.8005050Z               /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-15T17:03:44.8006040Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8006890Z           duplicate symbol __ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17hf3902cf69990587eE in:
2019-08-15T17:03:44.8007770Z               /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-15T17:03:44.8008680Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8009530Z           duplicate symbol __ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hbbe91a951b58057eE in:
2019-08-15T17:03:44.8010410Z               /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-15T17:03:44.8011330Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8012160Z           duplicate symbol __ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h85dd0407b9e7a52eE in:
2019-08-15T17:03:44.8013020Z               /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-15T17:03:44.8013950Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8014860Z           duplicate symbol __ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17hf3f6d79c6cbddd6dE in:
2019-08-15T17:03:44.8015800Z               /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-15T17:03:44.8016860Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8017670Z           duplicate symbol __ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h13bf829323225a6dE in:
2019-08-15T17:03:44.8018700Z               /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-15T17:03:44.8019860Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8020940Z           duplicate symbol __ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17h2d6bb84f9e5ad75dE in:
2019-08-15T17:03:44.8049990Z               /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-15T17:03:44.8051040Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8052240Z           duplicate symbol __ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17h7f47b52863c0c45dE in:
2019-08-15T17:03:44.8053300Z               /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-15T17:03:44.8054270Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8055130Z           duplicate symbol __ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h7b99dcdb155f1d5cE in:
2019-08-15T17:03:44.8056000Z               /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-15T17:03:44.8056940Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8057790Z           duplicate symbol __ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h96dc58962df29b4cE in:
2019-08-15T17:03:44.8058680Z               /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-15T17:03:44.8059600Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8060410Z           duplicate symbol __ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17hddabba78a5eebabbE in:
2019-08-15T17:03:44.8061310Z               /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-15T17:03:44.8062240Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8063070Z           duplicate symbol __ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17h78344bd01517d09aE in:
2019-08-15T17:03:44.8063950Z               /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-15T17:03:44.8064860Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8065700Z           duplicate symbol __ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17hbdddd8f535857d4aE in:
2019-08-15T17:03:44.8066620Z               /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-15T17:03:44.8067810Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8068650Z           duplicate symbol __ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h10876443845fd259E in:
2019-08-15T17:03:44.8069510Z               /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-15T17:03:44.8070440Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8071540Z           duplicate symbol __ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h6821cd7b9ec85329E in:
2019-08-15T17:03:44.8072510Z               /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-15T17:03:44.8073460Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8074280Z           duplicate symbol __ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17ha8332a47af574a58E in:
2019-08-15T17:03:44.8075170Z               /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-15T17:03:44.8076100Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8076930Z           duplicate symbol __ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h431b992a1522cc08E in:
2019-08-15T17:03:44.8077840Z               /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-15T17:03:44.8078760Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8079580Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h24e75e7b1e302724E in:
2019-08-15T17:03:44.8080480Z               /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-15T17:03:44.8081380Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8082240Z           duplicate symbol __ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17hd91547197e8a77d3E in:
2019-08-15T17:03:44.8083120Z               /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-15T17:03:44.8084030Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8084880Z           duplicate symbol __ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17h2b1ac4aea3edf6b3E in:
2019-08-15T17:03:44.8085750Z               /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-15T17:03:44.8086940Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8087780Z           duplicate symbol __ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17hb3192bf417c300c2E in:
2019-08-15T17:03:44.8088650Z               /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-15T17:03:44.8089770Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8090660Z           duplicate symbol __ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17h67cb5501236b7ab2E in:
2019-08-15T17:03:44.8091690Z               /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-15T17:03:44.8092620Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8093470Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17ha9438d40c7dac952E in:
2019-08-15T17:03:44.8094370Z               /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-15T17:03:44.8095290Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8096160Z           duplicate symbol __ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17hb4e91b4ec155b1f1E in:
2019-08-15T17:03:44.8097040Z               /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-15T17:03:44.8097950Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8098800Z           duplicate symbol __ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17h358524cf51a86111E in:
2019-08-15T17:03:44.8099660Z               /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-15T17:03:44.8100600Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8101440Z           duplicate symbol __ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h5cc70ee5be9621c0E in:
2019-08-15T17:03:44.8102370Z               /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-15T17:03:44.8103350Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_interface-1c04f70f140603e8.rlib(rustc_interface-1c04f70f140603e8.rustc_interface.ehyotmzi-cgu.4.rcgu.o)
2019-08-15T17:03:44.8104190Z           duplicate symbol __ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17hec63496c489874efE in:
2019-08-15T17:03:44.8105330Z               /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-15T17:03:44.8106250Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8107060Z           duplicate symbol __ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17h8c3219d565a54cceE in:
2019-08-15T17:03:44.8108400Z               /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-15T17:03:44.8109330Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8110110Z           duplicate symbol __ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17h17c9f17f07eefc8eE in:
2019-08-15T17:03:44.8110940Z               /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-15T17:03:44.8111940Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8112760Z           duplicate symbol __ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17hf3902cf69990587eE in:
2019-08-15T17:03:44.8113630Z               /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-15T17:03:44.8114640Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8115420Z           duplicate symbol __ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hbbe91a951b58057eE in:
2019-08-15T17:03:44.8116240Z               /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-15T17:03:44.8117270Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8118080Z           duplicate symbol __ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h85dd0407b9e7a52eE in:
2019-08-15T17:03:44.8118930Z               /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-15T17:03:44.8119960Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8120710Z           duplicate symbol __ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17hf3f6d79c6cbddd6dE in:
2019-08-15T17:03:44.8121820Z               /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-15T17:03:44.8122710Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8123490Z           duplicate symbol __ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h13bf829323225a6dE in:
2019-08-15T17:03:44.8124740Z               /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-15T17:03:44.8125570Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8126340Z           duplicate symbol __ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17h2d6bb84f9e5ad75dE in:
2019-08-15T17:03:44.8127340Z               /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-15T17:03:44.8128250Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8129050Z           duplicate symbol __ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17h7f47b52863c0c45dE in:
2019-08-15T17:03:44.8129860Z               /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-15T17:03:44.8130710Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8131680Z           duplicate symbol __ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h7b99dcdb155f1d5cE in:
2019-08-15T17:03:44.8132550Z               /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-15T17:03:44.8133470Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8134430Z           duplicate symbol __ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h96dc58962df29b4cE in:
2019-08-15T17:03:44.8135250Z               /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-15T17:03:44.8136100Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8136850Z           duplicate symbol __ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17hddabba78a5eebabbE in:
2019-08-15T17:03:44.8137680Z               /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-15T17:03:44.8138540Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8139300Z           duplicate symbol __ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17h78344bd01517d09aE in:
2019-08-15T17:03:44.8140130Z               /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-15T17:03:44.8140970Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8141750Z           duplicate symbol __ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17hbdddd8f535857d4aE in:
2019-08-15T17:03:44.8142950Z               /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-15T17:03:44.8143970Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8144770Z           duplicate symbol __ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h10876443845fd259E in:
2019-08-15T17:03:44.8145780Z               /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-15T17:03:44.8146870Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8147670Z           duplicate symbol __ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h6821cd7b9ec85329E in:
2019-08-15T17:03:44.8148490Z               /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-15T17:03:44.8149350Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8150110Z           duplicate symbol __ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17ha8332a47af574a58E in:
2019-08-15T17:03:44.8150940Z               /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-15T17:03:44.8152060Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8152860Z           duplicate symbol __ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h431b992a1522cc08E in:
2019-08-15T17:03:44.8153720Z               /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-15T17:03:44.8154720Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8155520Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h24e75e7b1e302724E in:
2019-08-15T17:03:44.8156360Z               /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-15T17:03:44.8157200Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8157980Z           duplicate symbol __ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17hd91547197e8a77d3E in:
2019-08-15T17:03:44.8158800Z               /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-15T17:03:44.8159660Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8160680Z           duplicate symbol __ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17h2b1ac4aea3edf6b3E in:
2019-08-15T17:03:44.8161650Z               /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-15T17:03:44.8162710Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8163510Z           duplicate symbol __ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17hb3192bf417c300c2E in:
2019-08-15T17:03:44.8164710Z               /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-15T17:03:44.8165790Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8166570Z           duplicate symbol __ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17h67cb5501236b7ab2E in:
2019-08-15T17:03:44.8167410Z               /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-15T17:03:44.8168270Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8169070Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17ha9438d40c7dac952E in:
2019-08-15T17:03:44.8169900Z               /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-15T17:03:44.8170750Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8171540Z           duplicate symbol __ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17hb4e91b4ec155b1f1E in:
2019-08-15T17:03:44.8172370Z               /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-15T17:03:44.8173220Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8173990Z           duplicate symbol __ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17h358524cf51a86111E in:
2019-08-15T17:03:44.8174840Z               /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-15T17:03:44.8175700Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8176470Z           duplicate symbol __ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h5cc70ee5be9621c0E in:
2019-08-15T17:03:44.8177290Z               /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-15T17:03:44.8178140Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.10.rcgu.o)
2019-08-15T17:03:44.8179160Z           duplicate symbol __ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17h2ff67fbe05d925c5E in:
2019-08-15T17:03:44.8180000Z               /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-15T17:03:44.8180840Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.5.rcgu.o)
2019-08-15T17:03:44.8181860Z           duplicate symbol __ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h02b6fb3a00399651E in:
2019-08-15T17:03:44.8182920Z               /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-15T17:03:44.8183860Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/libsyntax_ext-73c377cac5d9122b.rlib(syntax_ext-73c377cac5d9122b.syntax_ext.147bv352-cgu.5.rcgu.o)
2019-08-15T17:03:44.8184820Z           duplicate symbol __ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hbd13f3a51b431418E in:
2019-08-15T17:03:44.8185650Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.13.rcgu.o)
2019-08-15T17:03:44.8186480Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.11.rcgu.o)
2019-08-15T17:03:44.8187280Z           duplicate symbol __ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17hec63496c489874efE in:
2019-08-15T17:03:44.8188090Z               /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-15T17:03:44.8188970Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8189760Z           duplicate symbol __ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17h8c3219d565a54cceE in:
2019-08-15T17:03:44.8190570Z               /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-15T17:03:44.8191860Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8192690Z           duplicate symbol __ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17h17c9f17f07eefc8eE in:
2019-08-15T17:03:44.8193580Z               /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-15T17:03:44.8194620Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8195530Z           duplicate symbol __ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17hf3902cf69990587eE in:
2019-08-15T17:03:44.8196350Z               /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-15T17:03:44.8197180Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8198170Z           duplicate symbol __ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hbbe91a951b58057eE in:
2019-08-15T17:03:44.8198980Z               /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-15T17:03:44.8199790Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8200720Z           duplicate symbol __ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17hf3f6d79c6cbddd6dE in:
2019-08-15T17:03:44.8201590Z               /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-15T17:03:44.8202590Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8203370Z           duplicate symbol __ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h13bf829323225a6dE in:
2019-08-15T17:03:44.8204180Z               /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-15T17:03:44.8205200Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8205960Z           duplicate symbol __ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17h2d6bb84f9e5ad75dE in:
2019-08-15T17:03:44.8206770Z               /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-15T17:03:44.8207610Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8208340Z           duplicate symbol __ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17h7f47b52863c0c45dE in:
2019-08-15T17:03:44.8209150Z               /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-15T17:03:44.8209990Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8210740Z           duplicate symbol __ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h7b99dcdb155f1d5cE in:
2019-08-15T17:03:44.8212070Z               /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-15T17:03:44.8213430Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8214720Z           duplicate symbol __ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h96dc58962df29b4cE in:
2019-08-15T17:03:44.8215880Z               /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-15T17:03:44.8217290Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8218350Z           duplicate symbol __ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17hddabba78a5eebabbE in:
2019-08-15T17:03:44.8219470Z               /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-15T17:03:44.8220850Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8222040Z           duplicate symbol __ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17h78344bd01517d09aE in:
2019-08-15T17:03:44.8222860Z               /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-15T17:03:44.8223700Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8224580Z           duplicate symbol __ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17hbdddd8f535857d4aE in:
2019-08-15T17:03:44.8225500Z               /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-15T17:03:44.8226500Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8227270Z           duplicate symbol __ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h10876443845fd259E in:
2019-08-15T17:03:44.8228110Z               /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-15T17:03:44.8229220Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8229950Z           duplicate symbol __ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h6821cd7b9ec85329E in:
2019-08-15T17:03:44.8230740Z               /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-15T17:03:44.8231540Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8232290Z           duplicate symbol __ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17ha8332a47af574a58E in:
2019-08-15T17:03:44.8233060Z               /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-15T17:03:44.8233850Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8234610Z           duplicate symbol __ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h431b992a1522cc08E in:
2019-08-15T17:03:44.8235370Z               /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-15T17:03:44.8236420Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8237160Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h24e75e7b1e302724E in:
2019-08-15T17:03:44.8237940Z               /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-15T17:03:44.8238920Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8239700Z           duplicate symbol __ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17hd91547197e8a77d3E in:
2019-08-15T17:03:44.8240510Z               /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-15T17:03:44.8241460Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8242200Z           duplicate symbol __ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17h2b1ac4aea3edf6b3E in:
2019-08-15T17:03:44.8243170Z               /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-15T17:03:44.8243980Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8244880Z           duplicate symbol __ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17hb3192bf417c300c2E in:
2019-08-15T17:03:44.8245660Z               /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-15T17:03:44.8246450Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8247350Z           duplicate symbol __ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17h67cb5501236b7ab2E in:
2019-08-15T17:03:44.8248210Z               /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-15T17:03:44.8249040Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8249800Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17ha9438d40c7dac952E in:
2019-08-15T17:03:44.8250710Z               /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-15T17:03:44.8251800Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8252590Z           duplicate symbol __ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17hb4e91b4ec155b1f1E in:
2019-08-15T17:03:44.8253670Z               /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-15T17:03:44.8254800Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8255520Z           duplicate symbol __ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17h358524cf51a86111E in:
2019-08-15T17:03:44.8256480Z               /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-15T17:03:44.8257360Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8258100Z           duplicate symbol __ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h5cc70ee5be9621c0E in:
2019-08-15T17:03:44.8258880Z               /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-15T17:03:44.8259660Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_resolve-9687df2b1788baca.rlib(rustc_resolve-9687df2b1788baca.rustc_resolve.1dvephr4-cgu.15.rcgu.o)
2019-08-15T17:03:44.8260400Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T17:03:44.8261510Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T17:03:44.8262540Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_privacy-b4ebfe9328da6d19.rlib(rustc_privacy-b4ebfe9328da6d19.rustc_privacy.2cyhie11-cgu.13.rcgu.o)
2019-08-15T17:03:44.8263400Z           duplicate symbol __ZN81_$LT$rustc..mir..interpret..value..ConstValue$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd4cf3b7a6da8f4e2E in:
2019-08-15T17:03:44.8264270Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.11.rcgu.o)
2019-08-15T17:03:44.8265200Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.10.rcgu.o)
2019-08-15T17:03:44.8266030Z           duplicate symbol __ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hbd13f3a51b431418E in:
2019-08-15T17:03:44.8266910Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.13.rcgu.o)
2019-08-15T17:03:44.8267830Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.15.rcgu.o)
2019-08-15T17:03:44.8268660Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T17:03:44.8269520Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T17:03:44.8270440Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.15.rcgu.o)
2019-08-15T17:03:44.8271630Z           duplicate symbol __ZN68_$LT$syntax_pos..hygiene..ExpnInfo$u20$as$u20$core..clone..Clone$GT$5clone17hf3174c119aa6151bE in:
2019-08-15T17:03:44.8272490Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.7.rcgu.o)
2019-08-15T17:03:44.8273530Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.3.rcgu.o)
2019-08-15T17:03:44.8274350Z           duplicate symbol __ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17hec63496c489874efE in:
2019-08-15T17:03:44.8275600Z               /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-15T17:03:44.8276690Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8277490Z           duplicate symbol __ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17h8c3219d565a54cceE in:
2019-08-15T17:03:44.8278320Z               /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-15T17:03:44.8279150Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8279940Z           duplicate symbol __ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17h17c9f17f07eefc8eE in:
2019-08-15T17:03:44.8280740Z               /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-15T17:03:44.8281710Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8282500Z           duplicate symbol __ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17hf3902cf69990587eE in:
2019-08-15T17:03:44.8283310Z               /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-15T17:03:44.8284190Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8284950Z           duplicate symbol __ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hbbe91a951b58057eE in:
2019-08-15T17:03:44.8285790Z               /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-15T17:03:44.8286630Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8287390Z           duplicate symbol __ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17hf3f6d79c6cbddd6dE in:
2019-08-15T17:03:44.8288230Z               /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-15T17:03:44.8289060Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8290260Z           duplicate symbol __ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h13bf829323225a6dE in:
2019-08-15T17:03:44.8291360Z               /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-15T17:03:44.8292280Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8293120Z           duplicate symbol __ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17h2d6bb84f9e5ad75dE in:
2019-08-15T17:03:44.8294170Z               /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-15T17:03:44.8295170Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8296120Z           duplicate symbol __ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17h7f47b52863c0c45dE in:
2019-08-15T17:03:44.8296970Z               /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-15T17:03:44.8297850Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8298650Z           duplicate symbol __ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h7b99dcdb155f1d5cE in:
2019-08-15T17:03:44.8299490Z               /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-15T17:03:44.8300390Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8301180Z           duplicate symbol __ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h96dc58962df29b4cE in:
2019-08-15T17:03:44.8302210Z               /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-15T17:03:44.8303130Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8303940Z           duplicate symbol __ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17hddabba78a5eebabbE in:
2019-08-15T17:03:44.8304970Z               /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-15T17:03:44.8305840Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8306650Z           duplicate symbol __ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17h78344bd01517d09aE in:
2019-08-15T17:03:44.8307520Z               /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-15T17:03:44.8308390Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8309450Z           duplicate symbol __ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17hbdddd8f535857d4aE in:
2019-08-15T17:03:44.8310280Z               /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-15T17:03:44.8311170Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8312150Z           duplicate symbol __ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h10876443845fd259E in:
2019-08-15T17:03:44.8313060Z               /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-15T17:03:44.8313980Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8314750Z           duplicate symbol __ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h6821cd7b9ec85329E in:
2019-08-15T17:03:44.8315610Z               /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-15T17:03:44.8316500Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8317280Z           duplicate symbol __ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17ha8332a47af574a58E in:
2019-08-15T17:03:44.8318160Z               /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-15T17:03:44.8319030Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8319840Z           duplicate symbol __ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h431b992a1522cc08E in:
2019-08-15T17:03:44.8320710Z               /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-15T17:03:44.8321880Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8322750Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h24e75e7b1e302724E in:
2019-08-15T17:03:44.8323610Z               /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-15T17:03:44.8324660Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8325460Z           duplicate symbol __ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17hd91547197e8a77d3E in:
2019-08-15T17:03:44.8326310Z               /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-15T17:03:44.8327450Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8328280Z           duplicate symbol __ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17h2b1ac4aea3edf6b3E in:
2019-08-15T17:03:44.8329150Z               /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-15T17:03:44.8330040Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8331150Z           duplicate symbol __ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17hb3192bf417c300c2E in:
2019-08-15T17:03:44.8332120Z               /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-15T17:03:44.8333050Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8333890Z           duplicate symbol __ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17h67cb5501236b7ab2E in:
2019-08-15T17:03:44.8334880Z               /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-15T17:03:44.8335750Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8336570Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17ha9438d40c7dac952E in:
2019-08-15T17:03:44.8337460Z               /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-15T17:03:44.8338340Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8339160Z           duplicate symbol __ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17hb4e91b4ec155b1f1E in:
2019-08-15T17:03:44.8340010Z               /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-15T17:03:44.8340890Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8341700Z           duplicate symbol __ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17h358524cf51a86111E in:
2019-08-15T17:03:44.8342650Z               /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-15T17:03:44.8343560Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8344360Z           duplicate symbol __ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h5cc70ee5be9621c0E in:
2019-08-15T17:03:44.8345230Z               /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-15T17:03:44.8346370Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_plugin-2b959c3963e294b7.rlib(rustc_plugin-2b959c3963e294b7.rustc_plugin.575b28ge-cgu.3.rcgu.o)
2019-08-15T17:03:44.8347170Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T17:03:44.8348040Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T17:03:44.8349080Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_passes-2b8262651039f8c4.rlib(rustc_passes-2b8262651039f8c4.rustc_passes.dzgm0b03-cgu.15.rcgu.o)
2019-08-15T17:03:44.8349970Z           duplicate symbol __ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17hec63496c489874efE in:
2019-08-15T17:03:44.8350840Z               /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-15T17:03:44.8351960Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8352800Z           duplicate symbol __ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17h8c3219d565a54cceE in:
2019-08-15T17:03:44.8353670Z               /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-15T17:03:44.8354710Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8355530Z           duplicate symbol __ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17h17c9f17f07eefc8eE in:
2019-08-15T17:03:44.8356370Z               /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-15T17:03:44.8357240Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8358050Z           duplicate symbol __ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17hf3902cf69990587eE in:
2019-08-15T17:03:44.8358910Z               /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-15T17:03:44.8359980Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8360790Z           duplicate symbol __ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hbbe91a951b58057eE in:
2019-08-15T17:03:44.8361680Z               /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-15T17:03:44.8362580Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8363400Z           duplicate symbol __ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h85dd0407b9e7a52eE in:
2019-08-15T17:03:44.8364430Z               /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-15T17:03:44.8365550Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8366400Z           duplicate symbol __ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17hf3f6d79c6cbddd6dE in:
2019-08-15T17:03:44.8367270Z               /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-15T17:03:44.8368300Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8369170Z           duplicate symbol __ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h13bf829323225a6dE in:
2019-08-15T17:03:44.8370020Z               /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-15T17:03:44.8370900Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8371700Z           duplicate symbol __ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17h2d6bb84f9e5ad75dE in:
2019-08-15T17:03:44.8372550Z               /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-15T17:03:44.8373430Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8374230Z           duplicate symbol __ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17h7f47b52863c0c45dE in:
2019-08-15T17:03:44.8375080Z               /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-15T17:03:44.8375950Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8376760Z           duplicate symbol __ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h7b99dcdb155f1d5cE in:
2019-08-15T17:03:44.8377800Z               /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-15T17:03:44.8378690Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8379530Z           duplicate symbol __ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h96dc58962df29b4cE in:
2019-08-15T17:03:44.8380550Z               /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-15T17:03:44.8381670Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8382520Z           duplicate symbol __ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17hddabba78a5eebabbE in:
2019-08-15T17:03:44.8383380Z               /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-15T17:03:44.8384680Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8385490Z           duplicate symbol __ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17h78344bd01517d09aE in:
2019-08-15T17:03:44.8386330Z               /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-15T17:03:44.8387390Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8388240Z           duplicate symbol __ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17hbdddd8f535857d4aE in:
2019-08-15T17:03:44.8389170Z               /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-15T17:03:44.8390040Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8390820Z           duplicate symbol __ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h10876443845fd259E in:
2019-08-15T17:03:44.8391960Z               /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-15T17:03:44.8392850Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8393700Z           duplicate symbol __ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h6821cd7b9ec85329E in:
2019-08-15T17:03:44.8394720Z               /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-15T17:03:44.8395580Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8396380Z           duplicate symbol __ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17ha8332a47af574a58E in:
2019-08-15T17:03:44.8397220Z               /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-15T17:03:44.8398110Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8398930Z           duplicate symbol __ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h431b992a1522cc08E in:
2019-08-15T17:03:44.8399770Z               /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-15T17:03:44.8400640Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8401460Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h24e75e7b1e302724E in:
2019-08-15T17:03:44.8402310Z               /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-15T17:03:44.8403430Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8404390Z           duplicate symbol __ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17hd91547197e8a77d3E in:
2019-08-15T17:03:44.8405270Z               /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-15T17:03:44.8406360Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8407380Z           duplicate symbol __ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17h2b1ac4aea3edf6b3E in:
2019-08-15T17:03:44.8408250Z               /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-15T17:03:44.8409110Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8409910Z           duplicate symbol __ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17hb3192bf417c300c2E in:
2019-08-15T17:03:44.8410770Z               /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-15T17:03:44.8411800Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8412650Z           duplicate symbol __ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17h67cb5501236b7ab2E in:
2019-08-15T17:03:44.8413510Z               /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-15T17:03:44.8414560Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8415380Z           duplicate symbol __ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17ha9438d40c7dac952E in:
2019-08-15T17:03:44.8416220Z               /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-15T17:03:44.8417110Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8417900Z           duplicate symbol __ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17hb4e91b4ec155b1f1E in:
2019-08-15T17:03:44.8418760Z               /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-15T17:03:44.8419630Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8420420Z           duplicate symbol __ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17h358524cf51a86111E in:
2019-08-15T17:03:44.8421350Z               /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-15T17:03:44.8422650Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8423490Z           duplicate symbol __ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h5cc70ee5be9621c0E in:
2019-08-15T17:03:44.8424370Z               /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-15T17:03:44.8425560Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.10.rcgu.o)
2019-08-15T17:03:44.8426450Z           duplicate symbol __ZN68_$LT$syntax_pos..hygiene..ExpnInfo$u20$as$u20$core..clone..Clone$GT$5clone17hf3174c119aa6151bE in:
2019-08-15T17:03:44.8427300Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.7.rcgu.o)
2019-08-15T17:03:44.8428200Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.11.rcgu.o)
2019-08-15T17:03:44.8429010Z           duplicate symbol __ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hbd13f3a51b431418E in:
2019-08-15T17:03:44.8429860Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.13.rcgu.o)
2019-08-15T17:03:44.8430750Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.11.rcgu.o)
2019-08-15T17:03:44.8431560Z           duplicate symbol __ZN68_$LT$rustc..infer..SubregionOrigin$u20$as$u20$core..clone..Clone$GT$5clone17hfccc5fa2869b5cd4E in:
2019-08-15T17:03:44.8432440Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.15.rcgu.o)
2019-08-15T17:03:44.8433310Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.2.rcgu.o)
2019-08-15T17:03:44.8434120Z           duplicate symbol __ZN81_$LT$rustc..mir..interpret..value..ConstValue$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd4cf3b7a6da8f4e2E in:
2019-08-15T17:03:44.8434990Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.11.rcgu.o)
2019-08-15T17:03:44.8435860Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.7.rcgu.o)
2019-08-15T17:03:44.8436670Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2ne17hd12a732b8e9a2039E in:
2019-08-15T17:03:44.8437700Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.15.rcgu.o)
2019-08-15T17:03:44.8438750Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.8.rcgu.o)
2019-08-15T17:03:44.8439560Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T17:03:44.8440670Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T17:03:44.8441710Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.8.rcgu.o)
2019-08-15T17:03:44.8442650Z           duplicate symbol __ZN63_$LT$rustc..ty..sty..TyKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17he2541fb4583ca005E in:
2019-08-15T17:03:44.8443550Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.15.rcgu.o)
2019-08-15T17:03:44.8444780Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_mir-5a41a297d84a4713.rlib(rustc_mir-5a41a297d84a4713.rustc_mir.89my8nyc-cgu.8.rcgu.o)
2019-08-15T17:03:44.8445680Z           duplicate symbol __ZN70_$LT$rustc..ty..instance..Instance$u20$as$u20$core..cmp..PartialEq$GT$2eq17hbd13f3a51b431418E in:
2019-08-15T17:03:44.8446540Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.13.rcgu.o)
2019-08-15T17:03:44.8447430Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_codegen_ssa-3b61a16096801ec3.rlib(rustc_codegen_ssa-3b61a16096801ec3.rustc_codegen_ssa.cyksskwx-cgu.11.rcgu.o)
2019-08-15T17:03:44.8448230Z           duplicate symbol __ZN68_$LT$syntax_pos..hygiene..ExpnInfo$u20$as$u20$core..clone..Clone$GT$5clone17hf3174c119aa6151bE in:
2019-08-15T17:03:44.8449100Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.7.rcgu.o)
2019-08-15T17:03:44.8449990Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_codegen_ssa-3b61a16096801ec3.rlib(rustc_codegen_ssa-3b61a16096801ec3.rustc_codegen_ssa.cyksskwx-cgu.8.rcgu.o)
2019-08-15T17:03:44.8450800Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T17:03:44.8452160Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T17:03:44.8453090Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_incremental-b5e7a7c31ea738a0.rlib(rustc_incremental-b5e7a7c31ea738a0.rustc_incremental.297ukx4k-cgu.11.rcgu.o)
2019-08-15T17:03:44.8453940Z           duplicate symbol __ZN61_$LT$rustc..ty..Predicate$u20$as$u20$core..cmp..PartialEq$GT$2eq17hc1f86641ad67b518E in:
2019-08-15T17:03:44.8454960Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.13.rcgu.o)
2019-08-15T17:03:44.8455860Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_incremental-b5e7a7c31ea738a0.rlib(rustc_incremental-b5e7a7c31ea738a0.rustc_incremental.297ukx4k-cgu.12.rcgu.o)
2019-08-15T17:03:44.8456690Z           duplicate symbol __ZN68_$LT$syntax_pos..hygiene..ExpnInfo$u20$as$u20$core..clone..Clone$GT$5clone17hf3174c119aa6151bE in:
2019-08-15T17:03:44.8457520Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_lint-0b4261b2537ab6c8.rlib(rustc_lint-0b4261b2537ab6c8.rustc_lint.agjz8oxy-cgu.7.rcgu.o)
2019-08-15T17:03:44.8458430Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_incremental-b5e7a7c31ea738a0.rlib(rustc_incremental-b5e7a7c31ea738a0.rustc_incremental.297ukx4k-cgu.13.rcgu.o)
2019-08-15T17:03:44.8459530Z           duplicate symbol __ZN88_$LT$rustc..middle..mem_categorization..Categorization$u20$as$u20$core..clone..Clone$GT$5clone17h5af484e4916398b7E in:
2019-08-15T17:03:44.8460460Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_typeck-701a7532a63e4e68.rlib(rustc_typeck-701a7532a63e4e68.rustc_typeck.clryy1b9-cgu.8.rcgu.o)
2019-08-15T17:03:44.8466890Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_ast_borrowck-19adb5065ffa5966.rlib(rustc_ast_borrowck-19adb5065ffa5966.rustc_ast_borrowck.a6opxbk3-cgu.15.rcgu.o)
2019-08-15T17:03:44.8467800Z           duplicate symbol __ZN67_$LT$rustc..ty..sty..RegionKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17h22d5fdc346000418E in:
2019-08-15T17:03:44.8468940Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_traits-a915b3b16bb9b6c2.rlib(rustc_traits-a915b3b16bb9b6c2.rustc_traits.11mrhzvd-cgu.5.rcgu.o)
2019-08-15T17:03:44.8469970Z               /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/rustcwO6iUr/librustc_ast_borrowck-19adb5065ffa5966.rlib(rustc_ast_borrowck-19adb5065ffa5966.rustc_ast_borrowck.a6opxbk3-cgu.8.rcgu.o)
---
2019-08-15T17:03:44.8765790Z == clock drift check ==
2019-08-15T17:03:44.8765880Z   local time: Thu Aug 15 17:03:44 UTC 2019
2019-08-15T17:03:44.9343270Z   network time: Thu, 15 Aug 2019 17:03:44 GMT
2019-08-15T17:03:44.9345870Z == end clock drift check ==
2019-08-15T17:03:44.9518280Z ##[error]Bash exited with code '1'.
2019-08-15T17:03:44.9566310Z ##[section]Starting: Upload CPU usage statistics
2019-08-15T17:03:44.9571410Z ==============================================================================
2019-08-15T17:03:44.9571530Z Task         : Bash
2019-08-15T17:03:44.9571620Z 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-15T16:37:02.0066850Z ##[command]git remote add origin https://github.com/rust-lang/rust
2019-08-15T16:37:02.0250036Z ##[command]git config gc.auto 0
2019-08-15T16:37:02.0334871Z ##[command]git config --get-all http.https://github.com/rust-lang/rust.extraheader
2019-08-15T16:37:02.0389790Z ##[command]git config --get-all http.proxy
2019-08-15T16:37:02.7105302Z ##[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/63603/merge:refs/remotes/pull/63603/merge
---
2019-08-15T16:37:37.6764514Z do so (now or later) by using -b with the checkout command again. Example:
2019-08-15T16:37:37.6764546Z 
2019-08-15T16:37:37.6764776Z   git checkout -b <new-branch-name>
2019-08-15T16:37:37.6764806Z 
2019-08-15T16:37:37.6778342Z HEAD is now at da6715f17 Merge 69a32062da4fa57c1dfea585c375035ddaaaeb07 into f7af19c279b8b7ea3d2c21fcbd67164af8d5d968
2019-08-15T16:37:37.6932060Z ##[section]Starting: Collect CPU-usage statistics in the background
2019-08-15T16:37:37.6935335Z ==============================================================================
2019-08-15T16:37:37.6935396Z Task         : Bash
2019-08-15T16:37:37.6935441Z Description  : Run a Bash script on macOS, Linux, or Windows
---
2019-08-15T17:04:06.0475716Z    Compiling rustc_privacy v0.0.0 (/checkout/src/librustc_privacy)
2019-08-15T17:04:49.5078852Z    Compiling rustc_codegen_ssa v0.0.0 (/checkout/src/librustc_codegen_ssa)
2019-08-15T17:04:54.6966541Z    Compiling rustc_save_analysis v0.0.0 (/checkout/src/librustc_save_analysis)
2019-08-15T17:05:42.1103462Z    Compiling rustc_interface v0.0.0 (/checkout/src/librustc_interface)
2019-08-15T17:07:10.1010276Z error: linking with `cc` failed: exit code: 1
2019-08-15T17:07:10.1012169Z   |
2019-08-15T17:07:10.1045692Z   = 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/rustcw1FIry/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/rustcw1FIry/libenv_logger-39812d84bbfe2b11.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libhumantime-d1a9d86e783663fa.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libquick_error-b52ae6e62fe18a00.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_interface-288b1551118f29d0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_lint-4ff92fb753e74fba.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_traits-64343333d2d27de2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_resolve-8ccf886ea32a746d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_privacy-18fed63c49985c01.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_typeck-b37153423d42f561.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_plugin-cc5386d47e5ad4e6.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_passes-bf7cdf9475edf5c2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_mir-9ee82cf0678fc483.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/liblog_settings-2620b484081ec8f2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libeither-be66c1a9963b273c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_codegen_ssa-7b311e775fc309cb.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libtempfile-7dcc5500a694e84f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libremove_dir_all-a10b98c02f91914a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libcc-580cb3ec679a1ef0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_incremental-0d4da432f226d320.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_ast_borrowck-7ffaa31824d70f3d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_save_analysis-4aaa9d9a90eda71c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libserde_json-f180caae537f064f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libryu-17527a943b47993b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libitoa-cafbf9ae61da85d2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_codegen_utils-49a3d3718f35521d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libpunycode-bc98388f5faa9996.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_metadata-2b39375199468164.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libflate2-31c9dbe4de46ec52.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libminiz_sys-829f35f627be716a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libcrc32fast-df4710f26ff3874f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc-c4f47a864935061f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libnum_cpus-d9d9e3d323e05da4.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libmeasureme-fc872d44030f5d93.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libmemmap-1c9c5e21f22b4f63.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libchalk_engine-4d23e955653ea77c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libchalk_macros-1cf2838505f165dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/liblazy_static-2804eceb8314c34d.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libfmt_macros-f9c512bf542770a2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_fs_util-048ad9cdb9a5276a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_apfloat-648ce9609f2f81ba.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libbacktrace-fc803759d016563c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libbacktrace_sys-a883b0d3ea617415.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_demangle-cd18ceaeef5d07d4.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libpolonius_engine-852b1ffcf53b21de.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libdatafrog-20da5796e45c2975.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libparking_lot-31476845b241d1d5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libparking_lot_core-43382fa791fab8f0.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librand-27220a546062b8dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librand_xorshift-5881699d0271bbca.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librand_pcg-d7ba7a93367d81dd.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librand_hc-284c64edcaa9062e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librand_chacha-bfd57a2d41977c46.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librand_isaac-8a318270c401df3b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librand_core-1de73f1b5ed833b6.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/liblock_api-e235dde0fbca8f1b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libowning_ref-78f158d03583a646.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/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/rustcw1FIry/libsyntax-0080eac368865e5b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_lexer-a01a58b026705edc.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_target-cb594209510cba11.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_errors-8f589586108b76d1.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libatty-8ca53ff70731db4a.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libannotate_snippets-5f249de6bb711b79.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libsyntax_pos-11641ede3a552b36.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libunicode_width-5402e80272479668.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libarena-e8adb4266d86b522.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libtermcolor-fd219321841f006e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libproc_macro-ca397c4659406be4.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_data_structures-8448c0e13624c15f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libena-093aaf0cc374bff5.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libstable_deref_trait-646a1f04f6a5aa32.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libgraphviz-ba0ef3f480884f4f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libjobserver-07e1d0caa31c449b.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/liblibc-29f03ed69e612165.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librustc_hash-677da430504940be.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libbyteorder-c65025eaa21b723f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libserialize-aaf3e4552e45992e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libindexmap-0cc18a36b459b67c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libsmallvec-6ed313b2cf4fd8b6.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libscoped_tls-3dc09d8ab059989c.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/liblazy_static-4c7ff80308c4e52f.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libbitflags-7b5c97f3018774b1.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librls_data-9c386b65968abef2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/librls_span-00e5850e0d24133e.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/libserde-c1b899e8f871bdf2.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/liblog-6dfac0fdfe7541fc.rlib" "-Wl,--no-whole-archive" "-Wl,--whole-archive" "/tmp/rustcw1FIry/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-b8803eed3d738e25" "-Wl,--end-group" "-Wl,-Bstatic" "/tmp/rustcw1FIry/libcompiler_builtins-5f7546ebef3d3bcd.rlib" "-Wl,-Bdynamic" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-lutil" "-shared" "-Wl,-rpath,$ORIGIN/../lib"
2019-08-15T17:07:10.1160123Z   = note: /tmp/rustcw1FIry/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::hdd7f97b6ff62af3b':
2019-08-15T17:07:10.1160680Z           env_logger.agm6r3km-cgu.12:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hdd7f97b6ff62af3bE+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hdd7f97b6ff62af3b'
2019-08-15T17:07:10.1161466Z           /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$2eq17hdd7f97b6ff62af3bE+0x0): first defined here
2019-08-15T17:07:10.1161971Z           /tmp/rustcw1FIry/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-15T17:07:10.1162456Z           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-15T17:07:10.1163001Z           /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-15T17:07:10.1163519Z           /tmp/rustcw1FIry/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-15T17:07:10.1164022Z           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-15T17:07:10.1164605Z           /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-15T17:07:10.1165216Z           /tmp/rustcw1FIry/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-15T17:07:10.1165776Z           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-15T17:07:10.1166359Z           /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-15T17:07:10.1166856Z           /tmp/rustcw1FIry/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-15T17:07:10.1167329Z           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-15T17:07:10.1167883Z           /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-15T17:07:10.1168692Z           /tmp/rustcw1FIry/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-15T17:07:10.1169375Z           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-15T17:07:10.1169936Z           /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-15T17:07:10.1170410Z           /tmp/rustcw1FIry/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-15T17:07:10.1170905Z           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-15T17:07:10.1171444Z           /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-15T17:07:10.1171931Z           /tmp/rustcw1FIry/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-15T17:07:10.1172520Z           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-15T17:07:10.1173113Z           /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-15T17:07:10.1173736Z           /tmp/rustcw1FIry/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::hdd7f97b6ff62af3b':
2019-08-15T17:07:10.1174204Z           rustc_interface.2x62tjgj-cgu.14:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hdd7f97b6ff62af3bE+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hdd7f97b6ff62af3b'
2019-08-15T17:07:10.1174756Z           /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$2eq17hdd7f97b6ff62af3bE+0x0): first defined here
2019-08-15T17:07:10.1217058Z           /tmp/rustcw1FIry/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-15T17:07:10.1217586Z           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-15T17:07:10.1218120Z           /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-15T17:07:10.1219294Z           /tmp/rustcw1FIry/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-15T17:07:10.1219820Z           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-15T17:07:10.1220396Z           /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-15T17:07:10.1220864Z           /tmp/rustcw1FIry/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-15T17:07:10.1221371Z           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-15T17:07:10.1222091Z           /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-15T17:07:10.1222733Z           /tmp/rustcw1FIry/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-15T17:07:10.1223187Z           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-15T17:07:10.1223684Z           /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-15T17:07:10.1224133Z           /tmp/rustcw1FIry/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-15T17:07:10.1224924Z           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-15T17:07:10.1225850Z           /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-15T17:07:10.1226348Z           /tmp/rustcw1FIry/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-15T17:07:10.1226847Z           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-15T17:07:10.1227425Z           /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-15T17:07:10.1227895Z           /tmp/rustcw1FIry/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-15T17:07:10.1228345Z           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-15T17:07:10.1229250Z           /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-15T17:07:10.1229763Z           /tmp/rustcw1FIry/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-15T17:07:10.1230256Z           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-15T17:07:10.1230791Z           /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-15T17:07:10.1231274Z           /tmp/rustcw1FIry/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-15T17:07:10.1231732Z           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-15T17:07:10.1232399Z           /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-15T17:07:10.1232893Z           /tmp/rustcw1FIry/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-15T17:07:10.1233370Z           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-15T17:07:10.1233933Z           /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-15T17:07:10.1234409Z           /tmp/rustcw1FIry/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-15T17:07:10.1235486Z           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-15T17:07:10.1236243Z           /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-15T17:07:10.1236716Z           /tmp/rustcw1FIry/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::h22449e187f820dda':
2019-08-15T17:07:10.1237282Z           rustc_interface.2x62tjgj-cgu.15:(.text._ZN65_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$5clone17h22449e187f820ddaE+0x0): multiple definition of `_$LT$std..ffi..os_str..OsString$u20$as$u20$core..clone..Clone$GT$::clone::h22449e187f820dda'
2019-08-15T17:07:10.1237864Z           /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$5clone17h22449e187f820ddaE+0x0): first defined here
2019-08-15T17:07:10.1238363Z           /tmp/rustcw1FIry/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-15T17:07:10.1239124Z           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-15T17:07:10.1239692Z           /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-15T17:07:10.1240324Z           /tmp/rustcw1FIry/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-15T17:07:10.1240814Z           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-15T17:07:10.1241392Z           /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-15T17:07:10.1241888Z           /tmp/rustcw1FIry/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-15T17:07:10.1242509Z           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-15T17:07:10.1243045Z           /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-15T17:07:10.1243507Z           /tmp/rustcw1FIry/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-15T17:07:10.1244354Z           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-15T17:07:10.1245272Z           /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-15T17:07:10.1245882Z           /tmp/rustcw1FIry/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-15T17:07:10.1246523Z           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-15T17:07:10.1247071Z           /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-15T17:07:10.1247526Z           /tmp/rustcw1FIry/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-15T17:07:10.1248111Z           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-15T17:07:10.1248833Z           /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-15T17:07:10.1249346Z           /tmp/rustcw1FIry/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-15T17:07:10.1249807Z           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-15T17:07:10.1250366Z           /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-15T17:07:10.1250840Z           /tmp/rustcw1FIry/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-15T17:07:10.1251298Z           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-15T17:07:10.1251938Z           /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-15T17:07:10.1252434Z           /tmp/rustcw1FIry/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-15T17:07:10.1252903Z           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-15T17:07:10.1253438Z           /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-15T17:07:10.1253913Z           /tmp/rustcw1FIry/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-15T17:07:10.1254367Z           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-15T17:07:10.1254989Z           /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-15T17:07:10.1256187Z           /tmp/rustcw1FIry/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-15T17:07:10.1256682Z           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-15T17:07:10.1257220Z           /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-15T17:07:10.1257709Z           /tmp/rustcw1FIry/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-15T17:07:10.1258323Z           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-15T17:07:10.1259288Z           /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-15T17:07:10.1259760Z           /tmp/rustcw1FIry/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-15T17:07:10.1260382Z           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-15T17:07:10.1260954Z           /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-15T17:07:10.1261434Z           /tmp/rustcw1FIry/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-15T17:07:10.1261891Z           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-15T17:07:10.1262428Z           /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-15T17:07:10.1262877Z           /tmp/rustcw1FIry/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-15T17:07:10.1263475Z           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-15T17:07:10.1264043Z           /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-15T17:07:10.1264500Z           /tmp/rustcw1FIry/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-15T17:07:10.1264989Z           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-15T17:07:10.1265515Z           /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-15T17:07:10.1265984Z           /tmp/rustcw1FIry/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-15T17:07:10.1266449Z           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-15T17:07:10.1267065Z           /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-15T17:07:10.1267560Z           /tmp/rustcw1FIry/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-15T17:07:10.1268042Z           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-15T17:07:10.1268806Z           /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-15T17:07:10.1269324Z           /tmp/rustcw1FIry/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-15T17:07:10.1269801Z           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-15T17:07:10.1270483Z           /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-15T17:07:10.1270975Z           /tmp/rustcw1FIry/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-15T17:07:10.1271436Z           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-15T17:07:10.1272001Z           /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-15T17:07:10.1272479Z           /tmp/rustcw1FIry/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-15T17:07:10.1272944Z           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-15T17:07:10.1273494Z           /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-15T17:07:10.1274122Z           /tmp/rustcw1FIry/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-15T17:07:10.1274645Z           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-15T17:07:10.1275201Z           /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-15T17:07:10.1275668Z           /tmp/rustcw1FIry/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-15T17:07:10.1276156Z           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-15T17:07:10.1276685Z           /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-15T17:07:10.1277276Z           /tmp/rustcw1FIry/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-15T17:07:10.1277768Z           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-15T17:07:10.1278309Z           /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-15T17:07:10.1280359Z           /tmp/rustcw1FIry/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-15T17:07:10.1280913Z           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-15T17:07:10.1281482Z           /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-15T17:07:10.1281967Z           /tmp/rustcw1FIry/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-15T17:07:10.1282557Z           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-15T17:07:10.1283175Z           /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-15T17:07:10.1283631Z           /tmp/rustcw1FIry/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-15T17:07:10.1284185Z           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-15T17:07:10.1286202Z           /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-15T17:07:10.1286691Z           /tmp/rustcw1FIry/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-15T17:07:10.1287342Z           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-15T17:07:10.1287915Z           /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-15T17:07:10.1288380Z           /tmp/rustcw1FIry/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-15T17:07:10.1289104Z           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-15T17:07:10.1289661Z           /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-15T17:07:10.1290149Z           /tmp/rustcw1FIry/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-15T17:07:10.1290613Z           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-15T17:07:10.1291285Z           /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-15T17:07:10.1291815Z           /tmp/rustcw1FIry/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-15T17:07:10.1292285Z           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-15T17:07:10.1292857Z           /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-15T17:07:10.1293344Z           /tmp/rustcw1FIry/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-15T17:07:10.1293817Z           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-15T17:07:10.1294496Z           /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-15T17:07:10.1294964Z           /tmp/rustcw1FIry/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-15T17:07:10.1342091Z           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-15T17:07:10.1342731Z           /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-15T17:07:10.1343209Z           /tmp/rustcw1FIry/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-15T17:07:10.1343709Z           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-15T17:07:10.1344249Z           /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-15T17:07:10.1345045Z           /tmp/rustcw1FIry/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-15T17:07:10.1345735Z           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-15T17:07:10.1346742Z           /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-15T17:07:10.1347206Z           /tmp/rustcw1FIry/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-15T17:07:10.1348044Z           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-15T17:07:10.1349288Z           /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-15T17:07:10.1349938Z           /tmp/rustcw1FIry/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-15T17:07:10.1350427Z           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-15T17:07:10.1350993Z           /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-15T17:07:10.1351462Z           /tmp/rustcw1FIry/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-15T17:07:10.1351959Z           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-15T17:07:10.1352518Z           /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-15T17:07:10.1352995Z           /tmp/rustcw1FIry/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-15T17:07:10.1353577Z           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-15T17:07:10.1354659Z           /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-15T17:07:10.1355099Z           /tmp/rustcw1FIry/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-15T17:07:10.1355743Z           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-15T17:07:10.1356250Z           /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-15T17:07:10.1356690Z           /tmp/rustcw1FIry/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::hc1c5f3f7cb7da764':
2019-08-15T17:07:10.1357240Z           rustc_interface.2x62tjgj-cgu.5:(.text._ZN57_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$5clone17hc1c5f3f7cb7da764E+0x0): multiple definition of `_$LT$std..path..PathBuf$u20$as$u20$core..clone..Clone$GT$::clone::hc1c5f3f7cb7da764'
2019-08-15T17:07:10.1357754Z           /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$5clone17hc1c5f3f7cb7da764E+0x0): first defined here
2019-08-15T17:07:10.1358200Z           /tmp/rustcw1FIry/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-15T17:07:10.1359155Z           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-15T17:07:10.1359695Z           /tmp/rustcw1FIry/libenv_logger-39812d84bbfe2b11.rlib(env_logger-39812d84bbfe2b11.env_logger.agm6r3km-cgu.15.rcgu.o):env_logger.agm6r3km-cgu.15:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): first defined here
2019-08-15T17:07:10.1360173Z           /tmp/rustcw1FIry/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-15T17:07:10.1360664Z           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-15T17:07:10.1361320Z           /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-15T17:07:10.1361834Z           /tmp/rustcw1FIry/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-15T17:07:10.1362481Z           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-15T17:07:10.1363019Z           /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-15T17:07:10.1363697Z           /tmp/rustcw1FIry/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-15T17:07:10.1364344Z           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-15T17:07:10.1367273Z           /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-15T17:07:10.1369590Z           /tmp/rustcw1FIry/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-15T17:07:10.1370110Z           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-15T17:07:10.1370710Z           /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-15T17:07:10.1371224Z           /tmp/rustcw1FIry/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-15T17:07:10.1371736Z           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-15T17:07:10.1372332Z           /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-15T17:07:10.1373395Z           /tmp/rustcw1FIry/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-15T17:07:10.1373873Z           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-15T17:07:10.1374398Z           /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-15T17:07:10.1374793Z           /tmp/rustcw1FIry/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-15T17:07:10.1375514Z           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-15T17:07:10.1376197Z           /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-15T17:07:10.1376613Z           /tmp/rustcw1FIry/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-15T17:07:10.1377064Z           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-15T17:07:10.1377727Z           /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-15T17:07:10.1378173Z           /tmp/rustcw1FIry/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-15T17:07:10.1379014Z           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-15T17:07:10.1379606Z           /tmp/rustcw1FIry/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-15T17:07:10.1380084Z           /tmp/rustcw1FIry/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-15T17:07:10.1380680Z           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-15T17:07:10.1381289Z           /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-15T17:07:10.1381759Z           /tmp/rustcw1FIry/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-15T17:07:10.1382430Z           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-15T17:07:10.1382965Z           /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-15T17:07:10.1383537Z           /tmp/rustcw1FIry/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-15T17:07:10.1384032Z           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-15T17:07:10.1384751Z           /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-15T17:07:10.1385233Z           /tmp/rustcw1FIry/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-15T17:07:10.1385763Z           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-15T17:07:10.1386296Z           /tmp/rustcw1FIry/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-15T17:07:10.1386752Z           /tmp/rustcw1FIry/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-15T17:07:10.1387218Z           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-15T17:07:10.1387959Z           /tmp/rustcw1FIry/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-15T17:07:10.1388935Z           /tmp/rustcw1FIry/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-15T17:07:10.1389481Z           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-15T17:07:10.1390027Z           /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-15T17:07:10.1390509Z           /tmp/rustcw1FIry/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-15T17:07:10.1390992Z           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-15T17:07:10.1391757Z           /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-15T17:07:10.1392390Z           /tmp/rustcw1FIry/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-15T17:07:10.1392825Z           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-15T17:07:10.1393350Z           /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-15T17:07:10.1393756Z           /tmp/rustcw1FIry/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-15T17:07:10.1394159Z           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-15T17:07:10.1394706Z           /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-15T17:07:10.1395174Z           /tmp/rustcw1FIry/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-15T17:07:10.1395627Z           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-15T17:07:10.1396068Z           /tmp/rustcw1FIry/libenv_logger-39812d84bbfe2b11.rlib(env_logger-39812d84bbfe2b11.env_logger.agm6r3km-cgu.15.rcgu.o):env_logger.agm6r3km-cgu.15:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): first defined here
2019-08-15T17:07:10.1396474Z           /tmp/rustcw1FIry/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-15T17:07:10.1396894Z           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-15T17:07:10.1397356Z           /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-15T17:07:10.1397861Z           /tmp/rustcw1FIry/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-15T17:07:10.1398274Z           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-15T17:07:10.1399232Z           /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-15T17:07:10.1399703Z           /tmp/rustcw1FIry/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-15T17:07:10.1400199Z           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-15T17:07:10.1400833Z           /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-15T17:07:10.1401289Z           /tmp/rustcw1FIry/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-15T17:07:10.1401878Z           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-15T17:07:10.1402871Z           /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-15T17:07:10.1403320Z           /tmp/rustcw1FIry/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-15T17:07:10.1403777Z           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-15T17:07:10.1404283Z           /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-15T17:07:10.1404714Z           /tmp/rustcw1FIry/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-15T17:07:10.1405257Z           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-15T17:07:10.1405794Z           /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-15T17:07:10.1406242Z           /tmp/rustcw1FIry/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-15T17:07:10.1406724Z           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-15T17:07:10.1407258Z           /tmp/rustcw1FIry/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-15T17:07:10.1407705Z           /tmp/rustcw1FIry/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-15T17:07:10.1408186Z           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-15T17:07:10.1409233Z           /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-15T17:07:10.1409739Z           /tmp/rustcw1FIry/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-15T17:07:10.1410276Z           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-15T17:07:10.1410862Z           /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-15T17:07:10.1411305Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$::clone::ha7af95504ad1d484':
2019-08-15T17:07:10.1411897Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN54_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$5clone17ha7af95504ad1d484E+0x0): multiple definition of `_$LT$syntax..ast..Ty$u20$as$u20$core..clone..Clone$GT$::clone::ha7af95504ad1d484'
2019-08-15T17:07:10.1412741Z           /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-15T17:07:10.1413172Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$::clone::h2d3bf25f42fb716c':
2019-08-15T17:07:10.1413614Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$5clone17h2d3bf25f42fb716cE+0x0): multiple definition of `_$LT$syntax..ast..Arg$u20$as$u20$core..clone..Clone$GT$::clone::h2d3bf25f42fb716c'
2019-08-15T17:07:10.1414109Z           /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-15T17:07:10.1414541Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$::clone::hf7eacee7f5b97729':
2019-08-15T17:07:10.1414957Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$5clone17hf7eacee7f5b97729E+0x0): multiple definition of `_$LT$syntax..ast..Arm$u20$as$u20$core..clone..Clone$GT$::clone::hf7eacee7f5b97729'
2019-08-15T17:07:10.1415641Z           /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-15T17:07:10.1416146Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$::clone::h56fd2ce728c4a0c4':
2019-08-15T17:07:10.1416634Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$5clone17h56fd2ce728c4a0c4E+0x0): multiple definition of `_$LT$syntax..ast..Mac$u20$as$u20$core..clone..Clone$GT$::clone::h56fd2ce728c4a0c4'
2019-08-15T17:07:10.1417117Z           /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-15T17:07:10.1417558Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$::clone::h6bd3ab1021f0941b':
2019-08-15T17:07:10.1417980Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN55_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$5clone17h6bd3ab1021f0941bE+0x0): multiple definition of `_$LT$syntax..ast..Pat$u20$as$u20$core..clone..Clone$GT$::clone::h6bd3ab1021f0941b'
2019-08-15T17:07:10.1418831Z           /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-15T17:07:10.1419464Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$::clone::h2235ccd7c25d950e':
2019-08-15T17:07:10.1419944Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$5clone17h2235ccd7c25d950eE+0x0): multiple definition of `_$LT$syntax..ast..Expr$u20$as$u20$core..clone..Clone$GT$::clone::h2235ccd7c25d950e'
2019-08-15T17:07:10.1420466Z           /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-15T17:07:10.1420938Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$::clone::h4b6e1c0b1090f1c6':
2019-08-15T17:07:10.1421392Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$5clone17h4b6e1c0b1090f1c6E+0x0): multiple definition of `_$LT$syntax..ast..Item$u20$as$u20$core..clone..Clone$GT$::clone::h4b6e1c0b1090f1c6'
2019-08-15T17:07:10.1421948Z           /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-15T17:07:10.1422550Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$::clone::h8ce49d7fe24aea62':
2019-08-15T17:07:10.1422969Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$5clone17h8ce49d7fe24aea62E+0x0): multiple definition of `_$LT$syntax..ast..Path$u20$as$u20$core..clone..Clone$GT$::clone::h8ce49d7fe24aea62'
2019-08-15T17:07:10.1423534Z           /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-15T17:07:10.1423965Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$::clone::hd6df610aef6e2918':
2019-08-15T17:07:10.1424396Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN56_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$5clone17hd6df610aef6e2918E+0x0): multiple definition of `_$LT$syntax..ast..Stmt$u20$as$u20$core..clone..Clone$GT$::clone::hd6df610aef6e2918'
2019-08-15T17:07:10.1424870Z           /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-15T17:07:10.1425276Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$::clone::h37d4df313f0d3a6d':
2019-08-15T17:07:10.1425683Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN57_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$5clone17h37d4df313f0d3a6dE+0x0): multiple definition of `_$LT$syntax..ast..Block$u20$as$u20$core..clone..Clone$GT$::clone::h37d4df313f0d3a6d'
2019-08-15T17:07:10.1426440Z           /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-15T17:07:10.1426854Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$::clone::h319f9f8f49136073':
2019-08-15T17:07:10.1427455Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN57_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$5clone17h319f9f8f49136073E+0x0): multiple definition of `_$LT$syntax..ast..Field$u20$as$u20$core..clone..Clone$GT$::clone::h319f9f8f49136073'
2019-08-15T17:07:10.1428127Z           /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-15T17:07:10.1429149Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$::clone::hd5e4433c65aea665':
2019-08-15T17:07:10.1432138Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN57_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$5clone17hd5e4433c65aea665E+0x0): multiple definition of `_$LT$syntax..ast..Local$u20$as$u20$core..clone..Clone$GT$::clone::hd5e4433c65aea665'
2019-08-15T17:07:10.1434263Z           /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-15T17:07:10.1442493Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$::clone::h3a1cb7973604aa7c':
2019-08-15T17:07:10.1493683Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN58_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$5clone17h3a1cb7973604aa7cE+0x0): multiple definition of `_$LT$syntax..ast..FnDecl$u20$as$u20$core..clone..Clone$GT$::clone::h3a1cb7973604aa7c'
2019-08-15T17:07:10.1494598Z           /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-15T17:07:10.1495719Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$::clone::hfa3796e093c0cf87':
2019-08-15T17:07:10.1496239Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN59_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$5clone17hfa3796e093c0cf87E+0x0): multiple definition of `_$LT$syntax..ast..UseTree$u20$as$u20$core..clone..Clone$GT$::clone::hfa3796e093c0cf87'
2019-08-15T17:07:10.1496807Z           /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-15T17:07:10.1497528Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$::clone::h464cdfe8607b2196':
2019-08-15T17:07:10.1498003Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN59_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$5clone17h464cdfe8607b2196E+0x0): multiple definition of `_$LT$syntax..ast..Variant$u20$as$u20$core..clone..Clone$GT$::clone::h464cdfe8607b2196'
2019-08-15T17:07:10.1498918Z           /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-15T17:07:10.1499417Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$::clone::hc13b5ac7d3e09b83':
2019-08-15T17:07:10.1499893Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$5clone17hc13b5ac7d3e09b83E+0x0): multiple definition of `_$LT$syntax..ast..BareFnTy$u20$as$u20$core..clone..Clone$GT$::clone::hc13b5ac7d3e09b83'
2019-08-15T17:07:10.1500437Z           /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-15T17:07:10.1500900Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$::clone::h81b70c43366e7a2a':
2019-08-15T17:07:10.1501384Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$5clone17h81b70c43366e7a2aE+0x0): multiple definition of `_$LT$syntax..ast..FieldPat$u20$as$u20$core..clone..Clone$GT$::clone::h81b70c43366e7a2a'
2019-08-15T17:07:10.1502051Z           /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-15T17:07:10.1502686Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$::clone::hab38708faef80148':
2019-08-15T17:07:10.1503150Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$5clone17hab38708faef80148E+0x0): multiple definition of `_$LT$syntax..ast..ImplItem$u20$as$u20$core..clone..Clone$GT$::clone::hab38708faef80148'
2019-08-15T17:07:10.1503706Z           /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-15T17:07:10.1504163Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$::clone::h8bc19b5f05f0901d':
2019-08-15T17:07:10.1504616Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$5clone17h8bc19b5f05f0901dE+0x0): multiple definition of `_$LT$syntax..ast..MetaItem$u20$as$u20$core..clone..Clone$GT$::clone::h8bc19b5f05f0901d'
2019-08-15T17:07:10.1505285Z           /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-15T17:07:10.1505733Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$::clone::hf797b7e40c65838c':
2019-08-15T17:07:10.1506209Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN60_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$5clone17hf797b7e40c65838cE+0x0): multiple definition of `_$LT$syntax..ast..RangeEnd$u20$as$u20$core..clone..Clone$GT$::clone::hf797b7e40c65838c'
2019-08-15T17:07:10.1506741Z           /tmp/rustcw1FIry/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-15T17:07:10.1507191Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$::clone::h657ae1118b352aad':
2019-08-15T17:07:10.1507680Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$5clone17h657ae1118b352aadE+0x0): multiple definition of `_$LT$syntax..ast..Attribute$u20$as$u20$core..clone..Clone$GT$::clone::h657ae1118b352aad'
2019-08-15T17:07:10.1508213Z           /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-15T17:07:10.1509000Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$::clone::h9ac1f644ed52bca2':
2019-08-15T17:07:10.1509508Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$5clone17h9ac1f644ed52bca2E+0x0): multiple definition of `_$LT$syntax..ast..BinOpKind$u20$as$u20$core..clone..Clone$GT$::clone::h9ac1f644ed52bca2'
2019-08-15T17:07:10.1510049Z           /tmp/rustcw1FIry/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-15T17:07:10.1510518Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$::clone::h8c9cac8f2ca45eb7':
2019-08-15T17:07:10.1510986Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$5clone17h8c9cac8f2ca45eb7E+0x0): multiple definition of `_$LT$syntax..ast..GlobalAsm$u20$as$u20$core..clone..Clone$GT$::clone::h8c9cac8f2ca45eb7'
2019-08-15T17:07:10.1511526Z           /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-15T17:07:10.1512079Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$::clone::hba83b6457ba96a9d':
2019-08-15T17:07:10.1513651Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$5clone17hba83b6457ba96a9dE+0x0): multiple definition of `_$LT$syntax..ast..InlineAsm$u20$as$u20$core..clone..Clone$GT$::clone::hba83b6457ba96a9d'
2019-08-15T17:07:10.1514303Z           /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-15T17:07:10.1514786Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc8ffc6cddda037f':
2019-08-15T17:07:10.1515260Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN61_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc8ffc6cddda037fE+0x0): multiple definition of `_$LT$syntax..ast..TraitItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc8ffc6cddda037f'
2019-08-15T17:07:10.1515791Z           /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-15T17:07:10.1516252Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$::clone::he03072ea426998be':
2019-08-15T17:07:10.1516718Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN62_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$5clone17he03072ea426998beE+0x0): multiple definition of `_$LT$syntax..ast..GenericArg$u20$as$u20$core..clone..Clone$GT$::clone::he03072ea426998be'
2019-08-15T17:07:10.1517400Z           /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-15T17:07:10.1517912Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$::eq::hc847be027b7299e6':
2019-08-15T17:07:10.1518384Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN62_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$2eq17hc847be027b7299e6E+0x0): multiple definition of `_$LT$syntax..ast..Unsafety$u20$as$u20$core..cmp..PartialEq$GT$::eq::hc847be027b7299e6'
2019-08-15T17:07:10.1519217Z           /tmp/rustcw1FIry/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-15T17:07:10.1519680Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc763300301e91f0':
2019-08-15T17:07:10.1520172Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$5clone17hcc763300301e91f0E+0x0): multiple definition of `_$LT$syntax..ast..ForeignItem$u20$as$u20$core..clone..Clone$GT$::clone::hcc763300301e91f0'
2019-08-15T17:07:10.1520857Z           /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-15T17:07:10.1521328Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$::clone::hf79c5c5c090f1856':
2019-08-15T17:07:10.1521789Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$5clone17hf79c5c5c090f1856E+0x0): multiple definition of `_$LT$syntax..ast..GenericArgs$u20$as$u20$core..clone..Clone$GT$::clone::hf79c5c5c090f1856'
2019-08-15T17:07:10.1522351Z           /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-15T17:07:10.1522819Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$::clone::hc4a4bb7b01687475':
2019-08-15T17:07:10.1523285Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$5clone17hc4a4bb7b01687475E+0x0): multiple definition of `_$LT$syntax..ast..PathSegment$u20$as$u20$core..clone..Clone$GT$::clone::hc4a4bb7b01687475'
2019-08-15T17:07:10.1523854Z           /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-15T17:07:10.1524378Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$::clone::h7948d4049cac020a':
2019-08-15T17:07:10.1527430Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN63_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$5clone17h7948d4049cac020aE+0x0): multiple definition of `_$LT$syntax..ast..StructField$u20$as$u20$core..clone..Clone$GT$::clone::h7948d4049cac020a'
2019-08-15T17:07:10.1528020Z           /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-15T17:07:10.1528730Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$::clone::hafa3fec4dbe4ef36':
2019-08-15T17:07:10.1529295Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN64_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$5clone17hafa3fec4dbe4ef36E+0x0): multiple definition of `_$LT$syntax..ast..GenericBound$u20$as$u20$core..clone..Clone$GT$::clone::hafa3fec4dbe4ef36'
2019-08-15T17:07:10.1529834Z           /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-15T17:07:10.1530475Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$::clone::h60036ab162659d98':
2019-08-15T17:07:10.1530967Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN64_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$5clone17h60036ab162659d98E+0x0): multiple definition of `_$LT$syntax..ast..GenericParam$u20$as$u20$core..clone..Clone$GT$::clone::h60036ab162659d98'
2019-08-15T17:07:10.1531512Z           /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-15T17:07:10.1531985Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$::clone::hfc6d21363c24b4f6':
2019-08-15T17:07:10.1532452Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN64_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$5clone17hfc6d21363c24b4f6E+0x0): multiple definition of `_$LT$syntax..ast..MacStmtStyle$u20$as$u20$core..clone..Clone$GT$::clone::hfc6d21363c24b4f6'
2019-08-15T17:07:10.1533010Z           /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-15T17:07:10.1533483Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$::clone::he7ae39b89981b0d1':
2019-08-15T17:07:10.1534026Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN66_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$5clone17he7ae39b89981b0d1E+0x0): multiple definition of `_$LT$syntax..ast..NestedMetaItem$u20$as$u20$core..clone..Clone$GT$::clone::he7ae39b89981b0d1'
2019-08-15T17:07:10.1534628Z           /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-15T17:07:10.1535296Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$::clone::h86cbf6b2130f9de0':
2019-08-15T17:07:10.1535836Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN66_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$5clone17h86cbf6b2130f9de0E+0x0): multiple definition of `_$LT$syntax..ast..VisibilityKind$u20$as$u20$core..clone..Clone$GT$::clone::h86cbf6b2130f9de0'
2019-08-15T17:07:10.1536382Z           /tmp/rustcw1FIry/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-15T17:07:10.1536833Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$::clone::h17a5688fdaffdb67':
2019-08-15T17:07:10.1537467Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN66_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$5clone17h17a5688fdaffdb67E+0x0): multiple definition of `_$LT$syntax..ast..WherePredicate$u20$as$u20$core..clone..Clone$GT$::clone::h17a5688fdaffdb67'
2019-08-15T17:07:10.1538009Z           /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-15T17:07:10.1538480Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$::clone::h7eebfa4f376eb15d':
2019-08-15T17:07:10.1539210Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN67_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$5clone17h7eebfa4f376eb15dE+0x0): multiple definition of `_$LT$syntax..ast..InlineAsmOutput$u20$as$u20$core..clone..Clone$GT$::clone::h7eebfa4f376eb15d'
2019-08-15T17:07:10.1539828Z           /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-15T17:07:10.1540300Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.10.rcgu.o): In function `_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$::clone::h369aa04e0a6d4f57':
2019-08-15T17:07:10.1540776Z           syntax_ext.8kdf67x1-cgu.10:(.text._ZN69_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$5clone17h369aa04e0a6d4f57E+0x0): multiple definition of `_$LT$syntax..ast..AssocTyConstraint$u20$as$u20$core..clone..Clone$GT$::clone::h369aa04e0a6d4f57'
2019-08-15T17:07:10.1541455Z           /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-15T17:07:10.1541949Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$::clone::h46bb1d0328f119a8':
2019-08-15T17:07:10.1542593Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN64_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$5clone17h46bb1d0328f119a8E+0x0): multiple definition of `_$LT$syntax..parse..token..Lit$u20$as$u20$core..clone..Clone$GT$::clone::h46bb1d0328f119a8'
2019-08-15T17:07:10.1543143Z           /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-15T17:07:10.1543581Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$::clone::hf71f87b0dd79d485':
2019-08-15T17:07:10.1544053Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN66_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$5clone17hf71f87b0dd79d485E+0x0): multiple definition of `_$LT$syntax..parse..token..Token$u20$as$u20$core..clone..Clone$GT$::clone::hf71f87b0dd79d485'
2019-08-15T17:07:10.1545116Z           /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-15T17:07:10.1545586Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$::clone::h26345023f52bea36':
2019-08-15T17:07:10.1546061Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN71_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$5clone17h26345023f52bea36E+0x0): multiple definition of `_$LT$syntax..parse..token..DelimToken$u20$as$u20$core..clone..Clone$GT$::clone::h26345023f52bea36'
2019-08-15T17:07:10.1546598Z           /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-15T17:07:10.1547063Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$::clone::h7c1b0aa48e35fa89':
2019-08-15T17:07:10.1547521Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN72_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$5clone17h7c1b0aa48e35fa89E+0x0): multiple definition of `_$LT$syntax..parse..token..Nonterminal$u20$as$u20$core..clone..Clone$GT$::clone::h7c1b0aa48e35fa89'
2019-08-15T17:07:10.1548068Z           /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-15T17:07:10.1548787Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.5.rcgu.o): In function `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50':
2019-08-15T17:07:10.1549523Z           syntax_ext.8kdf67x1-cgu.5:(.text._ZN75_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$2eq17h42de887b39013c50E+0x0): multiple definition of `_$LT$syntax..ast..node_id_inner..NodeId$u20$as$u20$core..cmp..PartialEq$GT$::eq::h42de887b39013c50'
2019-08-15T17:07:10.1550111Z           /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-15T17:07:10.1550582Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a':
2019-08-15T17:07:10.1551049Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN63_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$2lt17ha6aec088ead71a7aE+0x0): multiple definition of `_$LT$alloc..string..String$u20$as$u20$core..cmp..PartialOrd$GT$::lt::ha6aec088ead71a7a'
2019-08-15T17:07:10.1551605Z           /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-15T17:07:10.1552191Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$::clone::h981793ca0380598e':
2019-08-15T17:07:10.1552834Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN64_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$5clone17h981793ca0380598eE+0x0): multiple definition of `_$LT$syntax_pos..symbol..Ident$u20$as$u20$core..clone..Clone$GT$::clone::h981793ca0380598e'
2019-08-15T17:07:10.1553354Z           /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-15T17:07:10.1553778Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841':
2019-08-15T17:07:10.1554227Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN65_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$5clone17h2de9e0e023b1f841E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..clone..Clone$GT$::clone::h2de9e0e023b1f841'
2019-08-15T17:07:10.1554731Z           /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-15T17:07:10.1555168Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$::clone::h1a06559b6eef647e':
2019-08-15T17:07:10.1555607Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN67_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$5clone17h1a06559b6eef647eE+0x0): multiple definition of `_$LT$syntax..tokenstream..IsJoint$u20$as$u20$core..clone..Clone$GT$::clone::h1a06559b6eef647e'
2019-08-15T17:07:10.1556196Z           /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-15T17:07:10.1556661Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565':
2019-08-15T17:07:10.1557102Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2eq17hb6b7d6cfa6699565E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::eq::hb6b7d6cfa6699565'
2019-08-15T17:07:10.1557608Z           /tmp/rustcw1FIry/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-15T17:07:10.1558019Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::ne::h7d0d3d988fdeabb8':
2019-08-15T17:07:10.1558756Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN67_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$2ne17h7d0d3d988fdeabb8E+0x0): multiple definition of `_$LT$syntax_pos..symbol..Symbol$u20$as$u20$core..cmp..PartialEq$GT$::ne::h7d0d3d988fdeabb8'
2019-08-15T17:07:10.1559730Z           /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-15T17:07:10.1560195Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$::clone::h27a2cfc534fd3a5c':
2019-08-15T17:07:10.1560680Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN69_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$5clone17h27a2cfc534fd3a5cE+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenTree$u20$as$u20$core..clone..Clone$GT$::clone::h27a2cfc534fd3a5c'
2019-08-15T17:07:10.1561241Z           /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-15T17:07:10.1561711Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.7.rcgu.o): In function `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286':
2019-08-15T17:07:10.1562185Z           syntax_ext.8kdf67x1-cgu.7:(.text._ZN71_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$5clone17hdbe0e45c5a84e286E+0x0): multiple definition of `_$LT$syntax..tokenstream..TokenStream$u20$as$u20$core..clone..Clone$GT$::clone::hdbe0e45c5a84e286'
2019-08-15T17:07:10.1562846Z           /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-15T17:07:10.1563350Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4':
2019-08-15T17:07:10.1564142Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): multiple definition of `_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$::eq::hd061d55c7a37a7c4'
2019-08-15T17:07:10.1564624Z           /tmp/rustcw1FIry/libenv_logger-39812d84bbfe2b11.rlib(env_logger-39812d84bbfe2b11.env_logger.agm6r3km-cgu.15.rcgu.o):env_logger.agm6r3km-cgu.15:(.text._ZN60_$LT$core..cmp..Ordering$u20$as$u20$core..cmp..PartialEq$GT$2eq17hd061d55c7a37a7c4E+0x0): first defined here
2019-08-15T17:07:10.1565033Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$::gt::hbc62750dd2c847bf':
2019-08-15T17:07:10.1565479Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN61_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$2gt17hbc62750dd2c847bfE+0x0): multiple definition of `_$LT$syntax_pos..BytePos$u20$as$u20$core..cmp..PartialOrd$GT$::gt::hbc62750dd2c847bf'
2019-08-15T17:07:10.1565969Z           /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-15T17:07:10.1566517Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$::clone::h64e1b3829bdeb7ce':
2019-08-15T17:07:10.1567237Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN65_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$5clone17h64e1b3829bdeb7ceE+0x0): multiple definition of `_$LT$rustc_target..abi..FloatTy$u20$as$u20$core..clone..Clone$GT$::clone::h64e1b3829bdeb7ce'
2019-08-15T17:07:10.1567725Z           /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-15T17:07:10.1568146Z           /tmp/rustcw1FIry/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::hdd7f97b6ff62af3b':
2019-08-15T17:07:10.1568742Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN66_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$2eq17hdd7f97b6ff62af3bE+0x0): multiple definition of `_$LT$std..io..error..ErrorKind$u20$as$u20$core..cmp..PartialEq$GT$::eq::hdd7f97b6ff62af3b'
2019-08-15T17:07:10.1569740Z           /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$2eq17hdd7f97b6ff62af3bE+0x0): first defined here
2019-08-15T17:07:10.1570223Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$::clone::hfca5f67e5bdde432':
2019-08-15T17:07:10.1570785Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN67_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$5clone17hfca5f67e5bdde432E+0x0): multiple definition of `_$LT$rustc_target..spec..abi..Abi$u20$as$u20$core..clone..Clone$GT$::clone::hfca5f67e5bdde432'
2019-08-15T17:07:10.1571390Z           /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-15T17:07:10.1571849Z           /tmp/rustcw1FIry/libsyntax_ext-90e9c76658c82dc5.rlib(syntax_ext-90e9c76658c82dc5.syntax_ext.8kdf67x1-cgu.9.rcgu.o): In function `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9':
2019-08-15T17:07:10.1572349Z           syntax_ext.8kdf67x1-cgu.9:(.text._ZN70_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$5clone17hd5c3b11ba596aed9E+0x0): multiple definition of `_$LT$syntax_pos..span_encoding..Span$u20$as$u20$core..clone..Clone$GT$::clone::hd5c3b11ba596aed9'
2019-08-15T17:07:10.1573201Z           /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-15T17:07:10.1573608Z           /tmp/rustcw1FIry/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-15T17:07:10.1574158Z           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-15T17:07:10.1575024Z           /tmp/rustcw1FIry/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-15T17:07:10.1575739Z           /tmp/rustcw1FIry/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-15T17:07:10.1579680Z           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-15T17:07:10.1581592Z           /tmp/rustcw1FIry/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-15T17:07:10.1582847Z           /tmp/rustcw1FIry/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-15T17:07:10.1585199Z           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-15T17:07:10.1586537Z           /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-15T17:07:10.1587203Z           /tmp/rustcw1FIry/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-15T17:07:10.1587697Z           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-15T17:07:10.1588291Z           /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-15T17:07:10.1589071Z           /tmp/rustcw1FIry/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-15T17:07:10.1589576Z           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-15T17:07:10.1590321Z           /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-15T17:07:10.1590778Z           /tmp/rustcw1FIry/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-15T17:07:10.1591260Z           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-15T17:07:10.1591781Z           /tmp/rustcw1FIry/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-15T17:07:10.1592237Z           /tmp/rustcw1FIry/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-15T17:07:10.1592721Z           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-15T17:07:10.1593245Z           /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-15T17:07:10.1594127Z           /tmp/rustcw1FIry/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-15T17:07:10.1594597Z           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-15T17:07:10.1595304Z           /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-15T17:07:10.1595788Z           /tmp/rustcw1FIry/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-15T17:07:10.1596263Z           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-15T17:07:10.1596822Z           /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-15T17:07:10.1597375Z           /tmp/rustcw1FIry/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-15T17:07:10.1597883Z           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-15T17:07:10.1598445Z           /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-15T17:07:10.1599137Z           /tmp/rustcw1FIry/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-15T17:07:10.1599638Z           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-15T17:07:10.1600184Z           /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-15T17:07:10.1600668Z           /tmp/rustcw1FIry/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-15T17:07:10.1601247Z           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-15T17:07:10.1601832Z           /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-15T17:07:10.1602305Z           /tmp/rustcw1FIry/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-15T17:07:10.1602784Z           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-15T17:07:10.1603306Z           /tmp/rustcw1FIry/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-15T17:07:10.1603777Z           /tmp/rustcw1FIry/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-15T17:07:10.1604371Z           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-15T17:07:10.1604879Z           /tmp/rustcw1FIry/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-15T17:07:10.1605332Z           /tmp/rustcw1FIry/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-15T17:07:10.1605879Z           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-15T17:07:10.1606446Z           /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-15T17:07:10.1606927Z           /tmp/rustcw1FIry/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-15T17:07:10.3555612Z == clock drift check ==
2019-08-15T17:07:10.3555658Z   local time: Thu Aug 15 17:07:10 UTC 2019
2019-08-15T17:07:10.4515947Z   network time: Thu, 15 Aug 2019 17:07:10 GMT
2019-08-15T17:07:10.4520030Z == end clock drift check ==
2019-08-15T17:07:11.2124081Z ##[error]Bash exited with code '1'.
2019-08-15T17:07:11.2217341Z ##[section]Starting: Checkout
2019-08-15T17:07:11.2219934Z ==============================================================================
2019-08-15T17:07:11.2220008Z Task         : Get sources
2019-08-15T17:07:11.2220057Z 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-sdtmwk7 branch August 15, 2019 17:16
@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.

8 participants