-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #68752 - JohnTitor:rollup-zz3u4xl, r=JohnTitor
Rollup of 7 pull requests Successful merges: - #68460 (Use BufWriter for emitting MIR) - #68681 (Suggest path separator for single-colon typos) - #68688 ([docs] remind bug reporters to update nightly) - #68704 (Ignore `build` dir formatting) - #68727 (Remove a comment about pretty printer in formatting tests) - #68736 (Remove `Alloc` in favor of `AllocRef`) - #68740 (Do not suggest things named underscore) Failed merges: r? @ghost
- Loading branch information
Showing
17 changed files
with
159 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// run-rustfix | ||
trait T { | ||
type Ty; | ||
} | ||
|
||
struct Impl; | ||
|
||
impl T for Impl { | ||
type Ty = u32; | ||
} | ||
|
||
fn template<T>() -> i64 { | ||
3 | ||
} | ||
|
||
fn main() { | ||
template::<<Impl as T>::Ty>(); | ||
//~^ ERROR found single colon before projection in qualified path | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// run-rustfix | ||
trait T { | ||
type Ty; | ||
} | ||
|
||
struct Impl; | ||
|
||
impl T for Impl { | ||
type Ty = u32; | ||
} | ||
|
||
fn template<T>() -> i64 { | ||
3 | ||
} | ||
|
||
fn main() { | ||
template::<<Impl as T>:Ty>(); | ||
//~^ ERROR found single colon before projection in qualified path | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
error: found single colon before projection in qualified path | ||
--> $DIR/qualified-path-in-turbofish.rs:17:27 | ||
| | ||
LL | template::<<Impl as T>:Ty>(); | ||
| ^ help: use double colon: `::` | ||
|
||
error: aborting due to previous error | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const _: () = (); | ||
|
||
fn main() { | ||
a // Shouldn't suggest underscore | ||
//~^ ERROR: cannot find value `a` in this scope | ||
} | ||
|
||
trait Unknown {} | ||
|
||
#[allow(unused_imports)] | ||
use Unknown as _; | ||
|
||
fn foo<T: A>(x: T) {} // Shouldn't suggest underscore | ||
//~^ ERROR: cannot find trait `A` in this scope |
16 changes: 16 additions & 0 deletions
16
src/test/ui/resolve/typo-suggestion-named-underscore.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
error[E0425]: cannot find value `a` in this scope | ||
--> $DIR/typo-suggestion-named-underscore.rs:4:5 | ||
| | ||
LL | a // Shouldn't suggest underscore | ||
| ^ not found in this scope | ||
|
||
error[E0405]: cannot find trait `A` in this scope | ||
--> $DIR/typo-suggestion-named-underscore.rs:13:11 | ||
| | ||
LL | fn foo<T: A>(x: T) {} // Shouldn't suggest underscore | ||
| ^ not found in this scope | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
Some errors have detailed explanations: E0405, E0425. | ||
For more information about an error, try `rustc --explain E0405`. |