blob: 695c5590559d0dc4c7404320a652129619ec7b15 [file] [log] [blame] [edit]
// rustfmt-indent_style: Visual
#[derive(Debug,)]
pub enum Case {
Upper,
Lower
}
#[derive(Debug, Clone, PartialEq, Eq,)]
pub enum Case {
Upper,
Lower
}
// NB - This formatting looks potentially off the desired state, but is
// consistent with current behavior. Included here to provide a line wrapped
// derive case with the changes applied to resolve issue #4584
#[derive(Add, Sub, Mul, Div, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Debug, Hash, Serialize, Mul,)]
struct Foo {}