rust/tests/target/issue-5871.rs

9 lines
195 B
Rust
Raw Normal View History

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