forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
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 rust-lang#121964 - matthiaskrgr:rollup-rtcju5m, r=matth…
…iaskrgr Rollup of 3 pull requests Successful merges: - rust-lang#121130 (Suggest moving definition if non-found macro_rules! is defined later) - rust-lang#121912 (Properly deal with GATs when looking for method chains to point at) - rust-lang#121927 (Add a proper `with_no_queries` to printing) r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
14 changed files
with
180 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
mod demo { | ||
fn hello() { | ||
something_later!(); //~ ERROR cannot find macro `something_later` in this scope | ||
} | ||
|
||
macro_rules! something_later { | ||
() => { | ||
println!("successfully expanded!"); | ||
}; | ||
} | ||
} | ||
|
||
fn main() {} |
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 @@ | ||
error: cannot find macro `something_later` in this scope | ||
--> $DIR/defined-later-issue-121061-2.rs:3:9 | ||
| | ||
LL | something_later!(); | ||
| ^^^^^^^^^^^^^^^ consider moving the definition of `something_later` before this call | ||
| | ||
note: a macro with the same name exists, but it appears later at here | ||
--> $DIR/defined-later-issue-121061-2.rs:6:18 | ||
| | ||
LL | macro_rules! something_later { | ||
| ^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 1 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,9 @@ | ||
fn main() { | ||
something_later!(); //~ ERROR cannot find macro `something_later` in this scope | ||
} | ||
|
||
macro_rules! something_later { | ||
() => { | ||
println!("successfully expanded!"); | ||
}; | ||
} |
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 @@ | ||
error: cannot find macro `something_later` in this scope | ||
--> $DIR/defined-later-issue-121061.rs:2:5 | ||
| | ||
LL | something_later!(); | ||
| ^^^^^^^^^^^^^^^ consider moving the definition of `something_later` before this call | ||
| | ||
note: a macro with the same name exists, but it appears later at here | ||
--> $DIR/defined-later-issue-121061.rs:5:14 | ||
| | ||
LL | macro_rules! something_later { | ||
| ^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 1 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,22 @@ | ||
// Regression test for issue #121898. | ||
|
||
trait Base { | ||
type Base<B>; | ||
} | ||
|
||
trait Functor<A>: Base { | ||
fn fmap<B>(self, f: impl Fn(A) -> B) -> Self::Base<B> | ||
where | ||
Self::Base<B>: Functor<B>; | ||
} | ||
|
||
fn fmap2<T, A, B, C>(input: T, f1: impl Fn(A) -> B, f2: impl Fn(B) -> C) -> T::Base<C> | ||
where | ||
T: Functor<A>, | ||
T::Base<B>: Functor<B, Base<C> = T::Base<C>>, | ||
{ | ||
input.fmap(f1).fmap(f2) | ||
//~^ ERROR the trait bound `<T as Base>::Base<C>: Functor<C>` is not satisfied | ||
} | ||
|
||
fn main() {} |
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,27 @@ | ||
error[E0277]: the trait bound `<T as Base>::Base<C>: Functor<C>` is not satisfied | ||
--> $DIR/method-chain-gats.rs:18:20 | ||
| | ||
LL | input.fmap(f1).fmap(f2) | ||
| ^^^^ the trait `Functor<C>` is not implemented for `<T as Base>::Base<C>` | ||
| | ||
note: the method call chain might not have had the expected associated types | ||
--> $DIR/method-chain-gats.rs:13:29 | ||
| | ||
LL | fn fmap2<T, A, B, C>(input: T, f1: impl Fn(A) -> B, f2: impl Fn(B) -> C) -> T::Base<C> | ||
| ^ `Base::Base` is `<T as Base>::Base<_>` here | ||
note: required by a bound in `Functor::fmap` | ||
--> $DIR/method-chain-gats.rs:10:24 | ||
| | ||
LL | fn fmap<B>(self, f: impl Fn(A) -> B) -> Self::Base<B> | ||
| ---- required by a bound in this associated function | ||
LL | where | ||
LL | Self::Base<B>: Functor<B>; | ||
| ^^^^^^^^^^ required by this bound in `Functor::fmap` | ||
help: consider further restricting the associated type | ||
| | ||
LL | T::Base<B>: Functor<B, Base<C> = T::Base<C>>, <T as Base>::Base<C>: Functor<C> | ||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
error: aborting due to 1 previous error | ||
|
||
For more information about this error, try `rustc --explain E0277`. |