-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore platforms that can't point to std
- Loading branch information
Showing
18 changed files
with
120 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
error: cannot find derive macro `Eqr` in this scope | ||
--> $DIR/deriving-meta-unknown-trait.rs:1:10 | ||
--> $DIR/deriving-meta-unknown-trait.rs:5:10 | ||
| | ||
LL | #[derive(Eqr)] | ||
| ^^^ help: a derive macro with a similar name exists: `Eq` | ||
| | ||
::: $SRC_DIR/libcore/cmp.rs:LL:COL | ||
| | ||
LL | pub macro Eq($item:item) { /* compiler built-in */ } | ||
LL | pub macro Eq($item:item) { | ||
| ------------------------ similarly named derive macro `Eq` defined here | ||
|
||
error: cannot find derive macro `Eqr` in this scope | ||
--> $DIR/deriving-meta-unknown-trait.rs:1:10 | ||
--> $DIR/deriving-meta-unknown-trait.rs:5:10 | ||
| | ||
LL | #[derive(Eqr)] | ||
| ^^^ help: a derive macro with a similar name exists: `Eq` | ||
| | ||
::: $SRC_DIR/libcore/cmp.rs:LL:COL | ||
| | ||
LL | pub macro Eq($item:item) { | ||
| ------------------------ similarly named derive macro `Eq` defined here | ||
|
||
error: aborting due to 2 previous errors | ||
|
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// FIXME: missing sysroot spans (#53081) | ||
// ignore-i586-unknown-linux-gnu | ||
// ignore-i586-unknown-linux-musl | ||
// ignore-i686-unknown-linux-musl | ||
fn main() { | ||
printlx!("oh noes!"); //~ ERROR cannot find | ||
} |
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// FIXME: missing sysroot spans (#53081) | ||
// ignore-i586-unknown-linux-gnu | ||
// ignore-i586-unknown-linux-musl | ||
// ignore-i686-unknown-linux-musl | ||
fn main() { | ||
inline!(); //~ ERROR cannot find macro `inline` in this scope | ||
} |
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
Oops, something went wrong.