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

Add Drop support for enums #15272

Merged
merged 1 commit into from Jul 23, 2014
Merged

Add Drop support for enums #15272

merged 1 commit into from Jul 23, 2014

Conversation

ghost
Copy link

@ghost ghost commented Jun 30, 2014

Fixes #13041.

@ghost
Copy link
Author

ghost commented Jun 30, 2014

@alexcrichton I know you had an interesting test case for this:

enum Foo { NoDrop, NeedsDrop(Box<int>) }
impl Drop for Foo {
    fn drop(&mut self) {
        *self = NeedsDrop(box 3);
    }
}

but this just overflows the stack, which I guess is intended behaviour?

@alexcrichton
Copy link
Member

This program also overflows its stack, so I think it is intended behavior yeah:

struct Foo;

impl Drop for Foo {
    fn drop(&mut self) {
        *self = Foo;
    }
}

fn main() {
    let _a = Foo;
}

@alexcrichton
Copy link
Member

I'm not sure if there was a philosophical reason that Drop couldn't be implemented on enums in the first place or whether it was just an unimplemented part of the compiler. If it were the former, then we may want to introduce this behind a feature gate for now (unless you're confident), and if it's the latter then all is well!

@ghost
Copy link
Author

ghost commented Jun 30, 2014

@alexcrichton I see! Happy to feature gate it for now. I wasn't sure if this may in fact warrant an RFC.

@sfackler
Copy link
Member

@alexcrichton IIRC it used to ICE.

@alexcrichton
Copy link
Member

Indeed it used to ICE, but was that intentional or accidental? (I don't know)

@pcwalton
Copy link
Contributor

pcwalton commented Jul 2, 2014

There's no reason why Drop shouldn't work on enums.

History time!

  • Originally drop { ... } was a property of trait objects (back then called obj).
  • Then drop { ... } became a property of so-called resource types, which we would today call tuple structs with a Drop impl.
  • Then drop { ... } became a property of classes, which evolved into the structs of today.
  • Then Drop was made more general and became a trait you could implement on anything nominal. In theory. In practice it was done by retrofitting the old class destructor code to work with the new Drop implementation via a few hacks in coherence. This was never intended to a permanent state of affairs, but the implementation largely survives to today.

@brson
Copy link
Contributor

brson commented Jul 2, 2014

Nice @pcwalton

@ghost
Copy link
Author

ghost commented Jul 2, 2014

@pcwalton Interesting, thanks!

@ghost
Copy link
Author

ghost commented Jul 20, 2014

@pcwalton Would you be able to take a look at this? :-)

span_err!(cx.tcx.sess, span, E0125,
"cannot implement a destructor on a \
structure that does not satisfy Send");
nominal type that does not satisfy Send");
Copy link
Contributor

Choose a reason for hiding this comment

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

nit: Can you change this to "structure or enumeration"? "Nominal type" is a bit jargony, IMO.

@pcwalton
Copy link
Contributor

Seems OK modulo a couple of nits.

bors added a commit that referenced this pull request Jul 22, 2014
@bors bors closed this Jul 23, 2014
@bors bors merged commit 59edfdd into rust-lang:master Jul 23, 2014
@ghost ghost deleted the issue-13041 branch August 18, 2014 18:18
bors added a commit to rust-lang-ci/rust that referenced this pull request Jul 17, 2023
minor: Use a permalink to the SIMD line index code, and add a note on the GitHub API
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.

Don't ICE when implementing Drop on enums
5 participants