Closed
Description
According to the manual, multiple comma-separated attributes may be specified within a single pair of square brackets. The parser does not do this at present (02ba8e2). Which one is correct?
Use case:
#[inline, cfg(target_word_size = "32")]
fn assert_fits_in_machine_word() {/*...*/}
#[inline, cfg(target_word_size = "64")]
fn assert_fits_in_machine_word() {/*...*/}