Skip to content

Commit 28626ca

Browse files
committed
Stabilize pub(restricted)
1 parent 0aeb9c1 commit 28626ca

27 files changed

+35
-106
lines changed

src/doc/unstable-book/src/SUMMARY.md

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
- [plugin_registrar](plugin-registrar.md)
6666
- [prelude_import](prelude-import.md)
6767
- [proc_macro](proc-macro.md)
68-
- [pub_restricted](pub-restricted.md)
6968
- [quote](quote.md)
7069
- [relaxed_adts](relaxed-adts.md)
7170
- [repr_simd](repr-simd.md)

src/doc/unstable-book/src/pub-restricted.md

-10
This file was deleted.

src/librustc/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#![feature(libc)]
3535
#![feature(loop_break_value)]
3636
#![feature(nonzero)]
37-
#![feature(pub_restricted)]
37+
#![cfg_attr(stage0, feature(pub_restricted))]
3838
#![feature(quote)]
3939
#![feature(rustc_diagnostic_macros)]
4040
#![feature(rustc_private)]

src/librustc_incremental/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#![feature(core_intrinsics)]
2626
#![feature(conservative_impl_trait)]
2727
#![cfg_attr(stage0,feature(field_init_shorthand))]
28-
#![feature(pub_restricted)]
28+
#![cfg_attr(stage0, feature(pub_restricted))]
2929

3030
extern crate graphviz;
3131
#[macro_use] extern crate rustc;

src/librustc_privacy/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ impl<'a, 'tcx: 'a> TypeVisitor<'tcx> for SearchInterfaceForPrivateItemsVisitor<'
951951
self.min_visibility = vis;
952952
}
953953
if !vis.is_at_least(self.required_visibility, self.tcx) {
954-
if self.tcx.sess.features.borrow().pub_restricted || self.has_old_errors {
954+
if self.has_old_errors {
955955
let mut err = struct_span_err!(self.tcx.sess, self.span, E0446,
956956
"private type `{}` in public interface", ty);
957957
err.span_label(self.span, &format!("can't leak private type"));
@@ -986,7 +986,7 @@ impl<'a, 'tcx: 'a> TypeVisitor<'tcx> for SearchInterfaceForPrivateItemsVisitor<'
986986
self.min_visibility = vis;
987987
}
988988
if !vis.is_at_least(self.required_visibility, self.tcx) {
989-
if self.tcx.sess.features.borrow().pub_restricted || self.has_old_errors {
989+
if self.has_old_errors {
990990
struct_span_err!(self.tcx.sess, self.span, E0445,
991991
"private trait `{}` in public interface", trait_ref)
992992
.span_label(self.span, &format!(

src/libstd/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,6 @@
283283
#![feature(placement_in_syntax)]
284284
#![feature(placement_new_protocol)]
285285
#![feature(prelude_import)]
286-
#![feature(pub_restricted)]
287286
#![feature(rand)]
288287
#![feature(raw)]
289288
#![feature(repr_simd)]
@@ -309,6 +308,7 @@
309308
#![feature(vec_push_all)]
310309
#![feature(zero_one)]
311310
#![cfg_attr(test, feature(update_panic_count))]
311+
#![cfg_attr(stage0, feature(pub_restricted))]
312312

313313
// Explicitly import the prelude. The compiler uses this same unstable attribute
314314
// to import the prelude implicitly when building crates that depend on std.

src/libsyntax/feature_gate.rs

+3-14
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,6 @@ declare_features! (
260260
// impl specialization (RFC 1210)
261261
(active, specialization, "1.7.0", Some(31844)),
262262

263-
// pub(restricted) visibilities (RFC 1422)
264-
(active, pub_restricted, "1.9.0", Some(32409)),
265-
266263
// Allow Drop types in statics/const functions (RFC 1440)
267264
(active, drop_types_in_const, "1.9.0", Some(33156)),
268265

@@ -406,6 +403,9 @@ declare_features! (
406403
(accepted, field_init_shorthand, "1.17.0", Some(37340)),
407404
// Allows the definition recursive static items.
408405
(accepted, static_recursion, "1.17.0", Some(29719)),
406+
// pub(restricted) visibilities (RFC 1422)
407+
(accepted, pub_restricted, "1.17.0", Some(32409)),
408+
409409
);
410410
// If you change this, please modify src/doc/unstable-book as well. You must
411411
// move that documentation into the relevant place in the other docs, and
@@ -1410,17 +1410,6 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
14101410
visit::walk_impl_item(self, ii);
14111411
}
14121412

1413-
fn visit_vis(&mut self, vis: &'a ast::Visibility) {
1414-
let span = match *vis {
1415-
ast::Visibility::Crate(span) => span,
1416-
ast::Visibility::Restricted { ref path, .. } => path.span,
1417-
_ => return,
1418-
};
1419-
gate_feature_post!(&self, pub_restricted, span, "`pub(restricted)` syntax is experimental");
1420-
1421-
visit::walk_vis(self, vis)
1422-
}
1423-
14241413
fn visit_generics(&mut self, g: &'a ast::Generics) {
14251414
for t in &g.ty_params {
14261415
if !t.attrs.is_empty() {

src/test/compile-fail-fulldeps/auxiliary/pub_and_stability.rs

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
// non-pub fields, marked with SILLY below)
3636

3737
#![feature(staged_api)]
38-
#![feature(pub_restricted)]
3938

4039
#![stable(feature = "unit_test", since = "0.0.0")]
4140

src/test/compile-fail/imports/unused.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
1211
#![deny(unused)]
1312

1413
mod foo {

src/test/compile-fail/privacy/restricted/auxiliary/pub_restricted.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
12-
1311
pub(crate) struct Crate;
1412
#[derive(Default)]
1513
pub struct Universe {

src/test/compile-fail/privacy/restricted/feature-gate.rs

-27
This file was deleted.

src/test/compile-fail/privacy/restricted/lookup-ignores-private.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(rustc_attrs, pub_restricted)]
11+
#![feature(rustc_attrs)]
1212
#![allow(warnings)]
1313

1414
mod foo {

src/test/compile-fail/privacy/restricted/private-in-public.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
11+
#![deny(warnings)]
12+
#![allow(unused)]
1213

1314
mod foo {
1415
struct Priv;
1516
mod bar {
1617
use foo::Priv;
1718
pub(super) fn f(_: Priv) {}
1819
pub(crate) fn g(_: Priv) {} //~ ERROR E0446
20+
//~^ this was previously accepted
1921
}
2022
}
2123

src/test/compile-fail/privacy/restricted/struct-literal-field.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
1211
#![deny(private_in_public)]
1312
#![allow(warnings)]
1413

src/test/compile-fail/privacy/restricted/test.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// aux-build:pub_restricted.rs
1212

13-
#![feature(pub_restricted)]
1413
#![deny(private_in_public)]
1514
#![allow(warnings)]
1615
extern crate pub_restricted;

src/test/compile-fail/privacy/restricted/tuple-struct-fields/test.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
12-
1311
mod foo {
1412
type T = ();
1513
struct S1(pub(foo) (), pub(T), pub(crate) (), pub(((), T)));

src/test/compile-fail/privacy/restricted/tuple-struct-fields/test2.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
12-
1311
macro_rules! define_struct {
1412
($t:ty) => {
1513
struct S1(pub $t);

src/test/compile-fail/privacy/restricted/tuple-struct-fields/test3.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
12-
1311
macro_rules! define_struct {
1412
($t:ty) => {
1513
struct S1(pub($t));

src/test/compile-fail/privacy/restricted/ty-params.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
12-
1311
macro_rules! m {
1412
($p: path) => (pub(in $p) struct Z;)
1513
}

src/test/compile-fail/privacy/union-field-privacy-1.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
1211
#![feature(untagged_unions)]
1312

1413
mod m {

src/test/compile-fail/privacy/union-field-privacy-2.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
1211
#![feature(untagged_unions)]
1312

1413
mod m {

src/test/compile-fail/resolve-bad-visibility.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
12-
1311
enum E {}
1412
trait Tr {}
1513

src/test/ui/resolve/auxiliary/privacy-struct-ctor.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(pub_restricted)]
12-
1311
pub mod m {
1412
pub struct S(u8);
1513

src/test/ui/resolve/privacy-struct-ctor.rs

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
// aux-build:privacy-struct-ctor.rs
1212

13-
#![feature(pub_restricted)]
14-
1513
extern crate privacy_struct_ctor as xcrate;
1614

1715
mod m {

src/test/ui/resolve/privacy-struct-ctor.stderr

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
error[E0423]: expected value, found struct `Z`
2-
--> $DIR/privacy-struct-ctor.rs:28:9
2+
--> $DIR/privacy-struct-ctor.rs:26:9
33
|
4-
28 | Z;
4+
26 | Z;
55
| ^
66
| |
77
| did you mean `Z { /* fields */ }`?
@@ -11,9 +11,9 @@ error[E0423]: expected value, found struct `Z`
1111
`use m::n::Z;`
1212

1313
error[E0423]: expected value, found struct `S`
14-
--> $DIR/privacy-struct-ctor.rs:38:5
14+
--> $DIR/privacy-struct-ctor.rs:36:5
1515
|
16-
38 | S;
16+
36 | S;
1717
| ^
1818
| |
1919
| did you mean `S { /* fields */ }`?
@@ -23,9 +23,9 @@ error[E0423]: expected value, found struct `S`
2323
`use m::S;`
2424

2525
error[E0423]: expected value, found struct `xcrate::S`
26-
--> $DIR/privacy-struct-ctor.rs:44:5
26+
--> $DIR/privacy-struct-ctor.rs:42:5
2727
|
28-
44 | xcrate::S;
28+
42 | xcrate::S;
2929
| ^^^^^^^^^
3030
| |
3131
| did you mean `xcrate::S { /* fields */ }`?
@@ -35,33 +35,33 @@ error[E0423]: expected value, found struct `xcrate::S`
3535
`use m::S;`
3636

3737
error: tuple struct `Z` is private
38-
--> $DIR/privacy-struct-ctor.rs:27:9
38+
--> $DIR/privacy-struct-ctor.rs:25:9
3939
|
40-
27 | n::Z; //~ ERROR tuple struct `Z` is private
40+
25 | n::Z; //~ ERROR tuple struct `Z` is private
4141
| ^^^^
4242

4343
error: tuple struct `S` is private
44-
--> $DIR/privacy-struct-ctor.rs:37:5
44+
--> $DIR/privacy-struct-ctor.rs:35:5
4545
|
46-
37 | m::S; //~ ERROR tuple struct `S` is private
46+
35 | m::S; //~ ERROR tuple struct `S` is private
4747
| ^^^^
4848

4949
error: tuple struct `Z` is private
50-
--> $DIR/privacy-struct-ctor.rs:41:5
50+
--> $DIR/privacy-struct-ctor.rs:39:5
5151
|
52-
41 | m::n::Z; //~ ERROR tuple struct `Z` is private
52+
39 | m::n::Z; //~ ERROR tuple struct `Z` is private
5353
| ^^^^^^^
5454

5555
error: tuple struct `S` is private
56-
--> $DIR/privacy-struct-ctor.rs:43:5
56+
--> $DIR/privacy-struct-ctor.rs:41:5
5757
|
58-
43 | xcrate::m::S; //~ ERROR tuple struct `S` is private
58+
41 | xcrate::m::S; //~ ERROR tuple struct `S` is private
5959
| ^^^^^^^^^^^^
6060

6161
error: tuple struct `Z` is private
62-
--> $DIR/privacy-struct-ctor.rs:47:5
62+
--> $DIR/privacy-struct-ctor.rs:45:5
6363
|
64-
47 | xcrate::m::n::Z; //~ ERROR tuple struct `Z` is private
64+
45 | xcrate::m::n::Z; //~ ERROR tuple struct `Z` is private
6565
| ^^^^^^^^^^^^^^^
6666

6767
error: aborting due to 8 previous errors

src/test/ui/span/pub-struct-field.rs

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// Regression test for issue #26083 and #35435
1212
// Test that span for public struct fields start at `pub`
1313

14-
#![feature(pub_restricted)]
15-
1614
struct Foo {
1715
bar: u8,
1816
pub bar: u8,

src/test/ui/span/pub-struct-field.stderr

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
error[E0124]: field `bar` is already declared
2-
--> $DIR/pub-struct-field.rs:18:5
2+
--> $DIR/pub-struct-field.rs:16:5
33
|
4-
17 | bar: u8,
4+
15 | bar: u8,
55
| ------- `bar` first declared here
6-
18 | pub bar: u8,
6+
16 | pub bar: u8,
77
| ^^^^^^^^^^^ field already declared
88

99
error[E0124]: field `bar` is already declared
10-
--> $DIR/pub-struct-field.rs:19:5
10+
--> $DIR/pub-struct-field.rs:17:5
1111
|
12-
17 | bar: u8,
12+
15 | bar: u8,
1313
| ------- `bar` first declared here
14-
18 | pub bar: u8,
15-
19 | pub(crate) bar: u8,
14+
16 | pub bar: u8,
15+
17 | pub(crate) bar: u8,
1616
| ^^^^^^^^^^^^^^^^^^ field already declared
1717

1818
error: aborting due to 2 previous errors

0 commit comments

Comments
 (0)