useshorthand::ShortHand;#[shorthand(enable(forward(doc)))]/// This should be in the output
#[shorthand(disable(forward(doc)))]/// This line should not.
#[shorthand(enable(forward(doc)))]/// This should be in the output
#[derive(ShortHand)]structExample{value: String,
}fnmain(){}