about summary refs log tree commit diff
path: root/tests/ui/parser/issues/issue-88276-unary-plus.fixed
blob: d991d46c0976c97e761d517c4f11ed38188a7e72 (plain)
1
2
3
4
5
6
7
8
//@ run-rustfix
#[allow(unused_parens)]
fn main() {
    let _ = 1; //~ ERROR leading `+` is not supported
    let _ = (1.0 + 2.0) * 3.0; //~ ERROR leading `+` is not supported
                           //~| ERROR leading `+` is not supported
    let _ = [3, 4+6]; //~ ERROR leading `+` is not supported
}