You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollup merge of rust-lang#72045 - RalfJung:incomplete-unsound, r=petrochenkov
Incomplete features can also be unsound
Some incomplete features do not just ICE, they are also currently unsound (e.g. rust-lang#72029, and also `specialization` -- which is not yet marked incomplete but [should be](rust-lang#71420)). This makes the message reflect that.
While at it I also added a link to the tracking issue, which hopefully should explain what is incomplete/unsound about the feature.
Copy file name to clipboardExpand all lines: src/test/ui/associated-type-bounds/duplicate.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
#![feature(associated_type_bounds)]
4
4
#![feature(type_alias_impl_trait)]
5
-
#![feature(impl_trait_in_bindings)]//~ WARN the feature `impl_trait_in_bindings` is incomplete and may cause the compiler to crash [incomplete_features]
5
+
#![feature(impl_trait_in_bindings)]//~ WARN the feature `impl_trait_in_bindings` is incomplete
0 commit comments