Uh oh!
There was an error while loading. Please reload this page.
Warn unused trait imports, rebased - #33091
Conversation
rust-highfive
commented
Apr 19, 2016
r? @nrc (rust_highfive has picked a reviewer for you, use r? to override) |
bors
commented
Apr 19, 2016
☔ The latest upstream changes (presumably #33002) made this pull request unmergeable. Please resolve the merge conflicts. |
nrc
commented
Apr 20, 2016
r+ with a rebase |
sanxiyn
commented
Apr 20, 2016
Travis failure is legit. f64::sqrt is defined in std. Since librand is no_std, librand defines its own version in FloatMath trait and imports it. But randtest is not no_std, so FloatMath import is necessary for librand and unused for randtest. |
0d38418 to
6ede0f8Comparesanxiyn
commented
Apr 20, 2016
Rebased and fixed tests. |
nrc
commented
Apr 20, 2016
@bors: r+ |
bors
commented
Apr 20, 2016
📌 Commit baf2fff has been approved by |
bors
commented
Apr 21, 2016
⌛ Testing commit baf2fff with merge 2209876... |
bors
commented
Apr 21, 2016
💔 Test failed - auto-win-msvc-64-opt |
alexcrichton
commented
Apr 21, 2016
@bors: retry On Thu, Apr 21, 2016 at 11:01 AM, bors notifications@github.com wrote:
|
bors
commented
Apr 22, 2016
⌛ Testing commit baf2fff with merge c148426... |
bors
commented
Apr 22, 2016
💔 Test failed - auto-win-msvc-64-opt |
alexcrichton
commented
Apr 22, 2016
@bors: retry On Fri, Apr 22, 2016 at 8:23 AM, bors notifications@github.com wrote:
|
Warn unused trait imports, rebased Rebase of rust-lang#30021. Fixrust-lang#25730.
mitaa
commented
Apr 23, 2016
cc #33154 I assume this has something to do with this PR? |
sanxiyn
commented
Apr 23, 2016
Yes, it does. Thanks for noticing. |
sanxiyn
commented
Apr 23, 2016
@bors r- |
sanxiyn
commented
Apr 25, 2016
@bors r=nrc |
bors
commented
Apr 25, 2016
📌 Commit 71f19ba has been approved by |
bors
commented
Apr 25, 2016
⌛ Testing commit 71f19ba with merge 2bb7770... |
bors
commented
Apr 25, 2016
💔 Test failed - auto-linux-64-cargotest |
bluss
commented
Apr 25, 2016
Cargo should not be using deny since that makes it explicitly not forward compatible with lint changes. @brson can we change cargotest to cap the lint level? |
sanxiyn
commented
Apr 25, 2016
We could use RUSTFLAGS. Two problems: first, cargo used by rustbuild at the moment is too old and does not support RUSTFLAGS. Second, setting RUSTFLAGS interferes with running cargo test suite. |
bors
commented
May 6, 2016
⌛ Testing commit 282afda with merge 4bb89bd... |
bors
commented
May 6, 2016
💔 Test failed - auto-linux-64-opt-rustbuild |
alexcrichton
commented
May 6, 2016
@bors: retry On Fri, May 6, 2016 at 6:07 AM, bors notifications@github.com wrote:
|
bors
commented
May 6, 2016
⌛ Testing commit 282afda with merge 2843f13... |
bors
commented
May 6, 2016
💔 Test failed - auto-linux-64-opt-rustbuild |
sanxiyn
commented
May 7, 2016
@bors retry |
bors
commented
May 7, 2016
⌛ Testing commit 282afda with merge 464f387... |
bors
commented
May 7, 2016
💔 Test failed - auto-linux-64-opt-rustbuild |
alexcrichton
commented
May 7, 2016
@bors: retry On Sat, May 7, 2016 at 7:59 AM, bors notifications@github.com wrote:
|
bors
commented
May 7, 2016
⌛ Testing commit 282afda with merge a98ad9f... |
bors
commented
May 7, 2016
⛄ The build was interrupted to prioritize another pull request. |
bors
commented
May 8, 2016
⌛ Testing commit 282afda with merge b4a9f6b... |
bors
commented
May 8, 2016
💔 Test failed - auto-linux-64-opt-rustbuild |
sanxiyn
commented
May 8, 2016
@bors retry |
Rebase of #30021.
Fix#25730.