Point at the span for the definition of ADTs internal to the current crate. Look at the leading char of the ident to determine whether we're expecting a likely fn or any of a fn, a tuple struct or a tuple variant. Turn fn `add_typo_suggestion` into a `Resolver` method.
10 lines
381 B
Rust
10 lines
381 B
Rust
fn main() {
|
|
let Box(a) = loop { };
|
|
//~^ ERROR expected tuple struct or tuple variant, found struct `Box`
|
|
|
|
// (The below is a trick to allow compiler to infer a type for
|
|
// variable `a` without attempting to ascribe a type to the
|
|
// pattern or otherwise attempting to name the Box type, which
|
|
// would run afoul of issue #22207)
|
|
let _b: *mut i32 = *a;
|
|
}
|