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#107220 - JohnTitor:rollup-5pvuz0z, r=JohnTitor
Rollup of 7 pull requests Successful merges: - rust-lang#106796 (BPF: Disable atomic CAS) - rust-lang#106886 (Make stage2 rustdoc and proc-macro-srv disableable in x.py install) - rust-lang#107101 (Filter param-env predicates for errors before calling `to_opt_poly_trait_pred`) - rust-lang#107109 (ThinBox: Add intra-doc-links for Metadata) - rust-lang#107148 (remove error code from `E0789`, add UI test/docs) - rust-lang#107151 (Instantiate dominators algorithm only once) - rust-lang#107153 (Consistently use dominates instead of is_dominated_by) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
17 changed files
with
126 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#### This error code is internal to the compiler and will not be emitted with normal Rust code. | ||
|
||
The internal `rustc_allowed_through_unstable_modules` attribute must be used | ||
on an item with a `stable` attribute. | ||
|
||
Erroneous code example: | ||
|
||
```compile_fail,E0789 | ||
// NOTE: both of these attributes are perma-unstable and should *never* be | ||
// used outside of the compiler and standard library. | ||
#![feature(rustc_attrs)] | ||
#![feature(staged_api)] | ||
#![unstable(feature = "foo_module", reason = "...", issue = "123")] | ||
#[rustc_allowed_through_unstable_modules] | ||
// #[stable(feature = "foo", since = "1.0")] | ||
struct Foo; | ||
// ^^^ error: `rustc_allowed_through_unstable_modules` attribute must be | ||
// paired with a `stable` attribute | ||
``` | ||
|
||
Typically when an item is marked with a `stable` attribute, the modules that | ||
enclose the item must also be marked with `stable` attributes, otherwise the | ||
item becomes *de facto* unstable. `#[rustc_allowed_through_unstable_modules]` | ||
is a workaround which allows an item to "escape" its unstable parent modules. | ||
This error occurs when an item is marked with | ||
`#[rustc_allowed_through_unstable_modules]` but no supplementary `stable` | ||
attribute exists. See [#99288](https://github.com/rust-lang/rust/pull/99288) | ||
for an example of `#[rustc_allowed_through_unstable_modules]` in use. |
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,12 @@ | ||
// compile-flags: --crate-type lib | ||
|
||
#![feature(rustc_attrs)] | ||
#![feature(staged_api)] | ||
#![unstable(feature = "foo_module", reason = "...", issue = "123")] | ||
|
||
#[rustc_allowed_through_unstable_modules] | ||
// #[stable(feature = "foo", since = "1.0")] | ||
struct Foo; | ||
//~^ ERROR `rustc_allowed_through_unstable_modules` attribute must be paired with a `stable` attribute | ||
//~^^ ERROR `rustc_allowed_through_unstable_modules` attribute must be paired with a `stable` attribute | ||
// FIXME: we shouldn't have two errors here, only occurs when using `-Zdeduplicate-diagnostics=no` |
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,15 @@ | ||
error[E0789]: `rustc_allowed_through_unstable_modules` attribute must be paired with a `stable` attribute | ||
--> $DIR/E0789.rs:9:1 | ||
| | ||
LL | struct Foo; | ||
| ^^^^^^^^^^^ | ||
|
||
error[E0789]: `rustc_allowed_through_unstable_modules` attribute must be paired with a `stable` attribute | ||
--> $DIR/E0789.rs:9:1 | ||
| | ||
LL | struct Foo; | ||
| ^^^^^^^^^^^ | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0789`. |