Issue warnings for unnecessary path disambiguators
This commit is contained in:
parent
7d21f21f71
commit
804459bdca
3 changed files with 32 additions and 15 deletions
|
|
@ -13,13 +13,24 @@
|
|||
#![feature(rustc_attrs)]
|
||||
#![allow(unused)]
|
||||
|
||||
macro_rules! m {
|
||||
($p: path) => {
|
||||
let _ = $p(0);
|
||||
let _: $p;
|
||||
}
|
||||
}
|
||||
|
||||
struct Foo<T> {
|
||||
_a: T,
|
||||
}
|
||||
|
||||
struct S<T>(T);
|
||||
|
||||
fn f() {
|
||||
let f = Some(Foo { _a: 42 }).map(|a| a as Foo::<i32>);
|
||||
let g: Foo::<i32> = Foo { _a: 42 };
|
||||
let f = Some(Foo { _a: 42 }).map(|a| a as Foo::<i32>); //~ WARN unnecessary path disambiguator
|
||||
let g: Foo::<i32> = Foo { _a: 42 }; //~ WARN unnecessary path disambiguator
|
||||
|
||||
m!(S::<u8>); // OK, no warning
|
||||
}
|
||||
|
||||
#[rustc_error]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue