File tree 13 files changed +25
-14
lines changed
rustc_trait_selection/src
tests/ui/specialization/min_specialization
13 files changed +25
-14
lines changed Original file line number Diff line number Diff line change 15
15
#![ feature( box_patterns) ]
16
16
#![ feature( if_let_guard) ]
17
17
#![ feature( let_chains) ]
18
- #![ feature( min_specialization) ]
18
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
19
19
#![ feature( negative_impls) ]
20
20
#![ feature( stmt_expr_attributes) ]
21
21
Original file line number Diff line number Diff line change 7
7
#![ allow( internal_features) ]
8
8
#![ allow( rustc:: diagnostic_outside_of_impl) ]
9
9
#![ allow( rustc:: untranslatable_diagnostic) ]
10
+ #![ cfg_attr( bootstrap, feature( min_specialization) ) ]
10
11
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/" ) ]
11
12
#![ doc( rust_logo) ]
12
13
#![ feature( array_windows) ]
16
17
#![ feature( error_reporter) ]
17
18
#![ feature( extract_if) ]
18
19
#![ feature( let_chains) ]
19
- #![ feature( min_specialization) ]
20
20
#![ feature( negative_impls) ]
21
21
#![ feature( never_type) ]
22
22
#![ feature( rustc_attrs) ]
Original file line number Diff line number Diff line change 5
5
#![ feature( associated_type_defaults) ]
6
6
#![ feature( closure_track_caller) ]
7
7
#![ feature( let_chains) ]
8
- #![ feature( min_specialization) ]
8
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
9
9
#![ feature( never_type) ]
10
10
#![ feature( rustc_attrs) ]
11
11
#![ feature( variant_count) ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ use rustc_errors::{codes::*, struct_span_code_err};
10
10
use rustc_hir:: def_id:: { DefId , LocalDefId } ;
11
11
use rustc_middle:: query:: Providers ;
12
12
use rustc_middle:: ty:: { self , TyCtxt , TypeVisitableExt } ;
13
- use rustc_span:: ErrorGuaranteed ;
13
+ use rustc_span:: { sym , ErrorGuaranteed } ;
14
14
use rustc_trait_selection:: traits;
15
15
16
16
mod builtin;
@@ -70,7 +70,11 @@ fn enforce_trait_manually_implementable(
70
70
if let ty:: trait_def:: TraitSpecializationKind :: AlwaysApplicable =
71
71
tcx. trait_def ( trait_def_id) . specialization_kind
72
72
{
73
- if !tcx. features ( ) . specialization && !tcx. features ( ) . min_specialization {
73
+ if !tcx. features ( ) . specialization
74
+ && !tcx. features ( ) . min_specialization
75
+ && !impl_header_span. allows_unstable ( sym:: specialization)
76
+ && !impl_header_span. allows_unstable ( sym:: min_specialization)
77
+ {
74
78
return Err ( tcx. dcx ( ) . emit_err ( errors:: SpecializationTrait { span : impl_header_span } ) ) ;
75
79
}
76
80
}
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ This API is completely unstable and subject to change.
67
67
#![ feature( is_sorted) ]
68
68
#![ feature( iter_intersperse) ]
69
69
#![ feature( let_chains) ]
70
- #![ feature( min_specialization) ]
70
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
71
71
#![ feature( never_type) ]
72
72
#![ feature( lazy_cell) ]
73
73
#![ feature( slice_partition_dedup) ]
Original file line number Diff line number Diff line change 5
5
#![ feature( try_blocks) ]
6
6
#![ feature( never_type) ]
7
7
#![ feature( box_patterns) ]
8
- #![ feature( min_specialization) ]
8
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
9
9
#![ feature( control_flow_enum) ]
10
10
11
11
#[ macro_use]
Original file line number Diff line number Diff line change 24
24
#![ feature( let_chains) ]
25
25
#![ feature( if_let_guard) ]
26
26
#![ feature( iterator_try_collect) ]
27
- #![ feature( min_specialization) ]
27
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
28
28
#![ feature( try_blocks) ]
29
29
#![ recursion_limit = "512" ] // For rustdoc
30
30
Original file line number Diff line number Diff line change 9
9
#![ feature( box_patterns) ]
10
10
#![ feature( if_let_guard) ]
11
11
#![ feature( let_chains) ]
12
- #![ feature( min_specialization) ]
12
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
13
13
#![ feature( try_blocks) ]
14
14
15
15
#[ macro_use]
Original file line number Diff line number Diff line change 2
2
#![ feature( box_patterns) ]
3
3
#![ feature( exact_size_is_empty) ]
4
4
#![ feature( let_chains) ]
5
- #![ feature( min_specialization) ]
5
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
6
6
#![ feature( try_blocks) ]
7
7
8
8
#[ macro_use]
Original file line number Diff line number Diff line change 8
8
#![ feature( is_sorted) ]
9
9
#![ feature( let_chains) ]
10
10
#![ feature( map_try_insert) ]
11
- #![ feature( min_specialization) ]
11
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
12
12
#![ feature( never_type) ]
13
13
#![ feature( option_get_or_insert_default) ]
14
14
#![ feature( round_char_boundary) ]
Original file line number Diff line number Diff line change 14
14
#![ feature( exhaustive_patterns) ]
15
15
#![ feature( iter_intersperse) ]
16
16
#![ feature( let_chains) ]
17
- #![ feature( min_specialization) ]
17
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
18
18
#![ feature( rustc_attrs) ]
19
19
#![ feature( step_trait) ]
20
20
#![ allow( internal_features) ]
Original file line number Diff line number Diff line change 24
24
#![ feature( option_take_if) ]
25
25
#![ feature( never_type) ]
26
26
#![ feature( type_alias_impl_trait) ]
27
- #![ feature( min_specialization) ]
27
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
28
28
#![ recursion_limit = "512" ] // For rustdoc
29
29
30
30
#[ macro_use]
Original file line number Diff line number Diff line change 5
5
#![ allow( internal_features) ]
6
6
#![ feature( allow_internal_unstable) ]
7
7
8
+ // aux-build:specialization-trait.rs
9
+ extern crate specialization_trait;
10
+
8
11
#[ allow_internal_unstable( min_specialization) ]
9
12
macro_rules! test {
10
13
( ) => {
11
14
struct T <U >( U ) ;
12
15
trait Tr { }
13
16
impl <U > Tr for T <U > { }
14
17
impl Tr for T <u8 > { }
15
- }
18
+
19
+ impl <U > specialization_trait:: SpecTrait for T <U > {
20
+ fn method( & self ) { }
21
+ }
22
+ } ;
16
23
}
17
24
18
25
test ! { }
You can’t perform that action at this time.
0 commit comments