Remove special case for ExprKind::Paren in MutVisitor
The special case breaks several useful invariants (`ExpnId`s are globally unique, and never change). This special case was added back in 2016 in https://github.com/rust-lang/rust/pull/34355
This commit is contained in:
parent
8df945c471
commit
f9f238e6b8
3 changed files with 19 additions and 6 deletions
9
src/test/ui/lint/issue-87274-paren-parent.rs
Normal file
9
src/test/ui/lint/issue-87274-paren-parent.rs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
// check-pass
|
||||
// Tests that we properly lint at 'paren' expressions
|
||||
|
||||
fn foo() -> Result<(), String> {
|
||||
(try!(Ok::<u8, String>(1))); //~ WARN use of deprecated macro `try`
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
10
src/test/ui/lint/issue-87274-paren-parent.stderr
Normal file
10
src/test/ui/lint/issue-87274-paren-parent.stderr
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
warning: use of deprecated macro `try`: use the `?` operator instead
|
||||
--> $DIR/issue-87274-paren-parent.rs:5:6
|
||||
|
|
||||
LL | (try!(Ok::<u8, String>(1)));
|
||||
| ^^^
|
||||
|
|
||||
= note: `#[warn(deprecated)]` on by default
|
||||
|
||||
warning: 1 warning emitted
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue