rust/tests/ui/did_you_mean/issue-41679-tilde-bitwise-negation-attempt.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
390 B
Rust
Raw Normal View History

2020-07-02 05:32:12 +00:00
//@ run-rustfix
fn main() {
2020-07-02 05:32:12 +00:00
let _x = ~1; //~ ERROR cannot be used as a unary operator
let _y = not 1; //~ ERROR unexpected `1` after identifier
2022-09-15 14:39:16 +00:00
let _z = not false; //~ ERROR unexpected keyword `false` after identifier
let _a = not true; //~ ERROR unexpected keyword `true` after identifier
let v = 1 + 2;
let _v = not v; //~ ERROR unexpected `v` after identifier
}