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

Built-in super-trait doesn't imply trait object implements that super-trait #15155

Closed
huonw opened this issue Jun 24, 2014 · 1 comment
Closed
Labels
A-trait-system Area: Trait system

Comments

@huonw
Copy link
Member

huonw commented Jun 24, 2014

trait Trait: Send {}

#[cfg(not(working))]
struct Struct { x: Box<Trait> }

#[cfg(working)]
struct Struct { x: Box<Trait + Send> }

impl Trait for Struct {}

fn main() {}

Compiling with --cfg working compiles fine, then without that --cfg gives:

send2.rs:9:16: 9:22 error: the type `Struct', which does not fulfill `Send`, cannot implement this trait
send2.rs:9 impl Trait for Struct {}
                          ^~~~~~
send2.rs:9:16: 9:22 note: types implementing this trait must fulfill `Send+Sized`
send2.rs:9 impl Trait for Struct {}
                          ^~~~~~
error: aborting due to previous error
@huonw huonw added the A-traits label Jun 24, 2014
@alexcrichton
Copy link
Member

cc #13155, quite similar, not sure if they're exactly the same though

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-trait-system Area: Trait system
Projects
None yet
Development

No branches or pull requests

2 participants