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

Make object not impl associated trait, fix cross-crate coherence inconsistency #5252

Merged

Conversation

nikomatsakis
Copy link
Contributor

Two changes:

  • The first fixes an inconsistency in coherence whereby extension methods were added to the inherent methods table, but only in cross-crate scenarios. This causes some minor fallout in tests and so forth. In one case (comm) I added inherent and trait methods so as to avoid the need to import traits like GenericPort just to use a port.
  • The second makes objects not implement the associated trait, as discussed in Make object types not implement their associated trait #5087.

r? @pcwalton

@@ -104,64 +104,98 @@ pub fn stream<T:Owned>() -> (Port<T>, Chan<T>) {
(Port_(Port_ { endp: Some(s) }), Chan_(Chan_{ endp: Some(c) }))
}

// Add an inherent method so that imports of GenericChan are not
// required.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could also be done by adding GenericChan to the prelude, couldn't it?

@pcwalton
Copy link
Contributor

pcwalton commented Mar 6, 2013

r+

bors added a commit that referenced this pull request Mar 6, 2013
…l-self, r=pcwalton

Two changes:

- The first fixes an inconsistency in coherence whereby extension methods were added to the inherent methods table, but only in cross-crate scenarios.  This causes some minor fallout in tests and so forth.  In one case (comm) I added inherent and trait methods so as to avoid the need to import traits like `GenericPort` just to use a port.

- The second makes objects not implement the associated trait, as discussed in #5087.

r? @pcwalton
@bors bors closed this Mar 6, 2013
@bors bors merged commit 5653fe6 into rust-lang:incoming Mar 6, 2013
@nikomatsakis nikomatsakis deleted the issue-5087-make-trait-not-impl-self branch March 6, 2013 18:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants