-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Stabilize the re_rebalance_coherence
feature
#65879
Merged
bors
merged 4 commits into
rust-lang:master
from
ohadravid:stabilize-re-rebalance-coherence
Nov 9, 2019
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
026aee6
Stabilize the `re_rebalance_coherence` feature
ohadravid 3b7c0d3
Change `Into` docs to refer only to older versions of rust
ohadravid 442a6e7
Strengthen documentation discouraging implementing `Into` over `From`
ohadravid 3e0759d
Push `re_rebalance_coherence` to 1.41
ohadravid File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
23 changes: 0 additions & 23 deletions
23
src/doc/unstable-book/src/language-features/re-rebalance-coherence.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
// aux-build:coherence_lib.rs | ||
// revisions: old re | ||
|
||
#![cfg_attr(re, feature(re_rebalance_coherence))] | ||
|
||
extern crate coherence_lib as lib; | ||
use lib::Remote1; | ||
|
||
impl<T> Remote1<T> for isize { } | ||
//[old]~^ ERROR E0210 | ||
//[re]~^^ ERROR E0210 | ||
//~^ ERROR E0210 | ||
|
||
fn main() { } |
2 changes: 1 addition & 1 deletion
2
...coherence/coherence-all-remote.old.stderr → .../ui/coherence/coherence-all-remote.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
// aux-build:coherence_lib.rs | ||
// revisions: old re | ||
|
||
#![cfg_attr(re, feature(re_rebalance_coherence))] | ||
|
||
extern crate coherence_lib as lib; | ||
use lib::Remote1; | ||
|
||
pub struct BigInt; | ||
|
||
impl<T> Remote1<BigInt> for T { } | ||
//[old]~^ ERROR type parameter `T` must be used as the type parameter for some local type | ||
//[re]~^^ ERROR E0210 | ||
//~^ ERROR E0210 | ||
|
||
fn main() { } |
2 changes: 1 addition & 1 deletion
2
...oherence/coherence-bigint-param.re.stderr → ...i/coherence/coherence-bigint-param.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 0 additions & 12 deletions
12
src/test/ui/coherence/coherence-blanket-conflicts-with-blanket-implemented.re.stderr
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...licts-with-blanket-implemented.old.stderr → ...conflicts-with-blanket-implemented.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should strengthen this -- unless we have a good example of when you do need to implement
Into
, we should probably start by telling people to avoid implementingInto
directly, and then continue with this content?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should say 1.41 instead?