rust/tests/target/issue-5871.rs
2023-10-22 20:21:44 -05:00

8 lines
195 B
Rust

#![feature(stmt_expr_attributes)]
fn okay() -> u32 {
(
// Comments in parentheses-expressions caused attributes to be duplicated.
#[allow(unused_variables)]
0
)
}