Module blog::daily_rfcs::attributes::_0016_more_attributes
source · [−]Expand description
Allow attributes on more places inside functions, such as statements, blocks and expressions.
Note
- attributes bind tighter than any operator, that is
#[attr] x op y
is always parsed as(#[attr] x) op y
. - Attributes would be disallowed on
if
.