We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#3147 "only" seems fixed for non-enum-like structs, the following code crashes right now.
struct S(~str); impl Drop for S { fn finalize(&self) { println(**self); } } fn main() { match S(~"foo") { S(_s) => {} } }