about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/author/repeat.rs
blob: 872f99844a01ecae65348a4bb6e96b1da2cf12a9 (plain)
1
2
3
4
5
6
7
//@ check-pass

#[allow(clippy::no_effect)]
fn main() {
    #[clippy::author]
    [1_u8; 5];
}