Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stability attributes are required for some inaccessible items #29034

Closed
petrochenkov opened this issue Oct 13, 2015 · 0 comments · Fixed by #29083
Closed

Stability attributes are required for some inaccessible items #29034

petrochenkov opened this issue Oct 13, 2015 · 0 comments · Fixed by #29083
Labels
A-stability Area: `#[stable]`, `#[unstable]` etc.

Comments

@petrochenkov
Copy link
Contributor

#![feature(staged_api)]
#![staged_api]

#[stable(feature="test", since="1.0.0")]
pub const C: u8 = {pub struct S; 1 };
#[stable(feature="test", since="1.0.0")]
pub type T = [u8; { pub struct S; 1 }];

fn main() {}

<anon>:8:20: 8:33 error: This node does not have a stability attribute
<anon>:8 pub const C: u8 = {pub struct S; 1 };
                            ^~~~~~~~~~~~~
<anon>:10:21: 10:34 error: This node does not have a stability attribute
<anon>:10 pub type T = [u8; { pub struct S; 1 }];
                              ^~~~~~~~~~~~~

Noticed while reading stability.rs
This is more amusing, than problematic, but I'll fix it anyway.

@steveklabnik steveklabnik added the A-stability Area: `#[stable]`, `#[unstable]` etc. label Nov 11, 2015
bors added a commit that referenced this issue Nov 18, 2015
What this patch does:
- Stability annotations are now based on "exported items" supplied by rustc_privacy and not "public items". Exported items are as accessible for external crates as directly public items and should be annotated with stability attributes.
- Trait impls require annotations now.
- Reexports require annotations now.
- Crates themselves didn't require annotations, now they do.
- Exported macros are annotated now, but these annotations are not used yet.
- Some useless annotations are detected and result in errors
- Finally, some small bugs are fixed - deprecation propagates from stable deprecated parents, items in blocks are traversed correctly (fixes #29034) + some code cleanup.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-stability Area: `#[stable]`, `#[unstable]` etc.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants