-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add
relaxed_struct_unsize
feature gate
- Loading branch information
Showing
6 changed files
with
73 additions
and
15 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
10 changes: 10 additions & 0 deletions
10
src/test/ui/feature-gates/feature-gate-relaxed_struct_unsize.rs
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,10 @@ | ||
// Test that we allow unsizing even if there is an unchanged param in the | ||
// field getting unsized. | ||
struct A<T, U: ?Sized + 'static>(T, B<T, U>); | ||
struct B<T, U: ?Sized>(T, U); | ||
|
||
fn main() { | ||
let x: A<[u32; 1], [u32; 1]> = A([0; 1], B([0; 1], [0; 1])); | ||
let y: &A<[u32; 1], [u32]> = &x; //~ ERROR mismatched types | ||
assert_eq!(y.1.1.len(), 1); | ||
} |
14 changes: 14 additions & 0 deletions
14
src/test/ui/feature-gates/feature-gate-relaxed_struct_unsize.stderr
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,14 @@ | ||
error[E0308]: mismatched types | ||
--> $DIR/feature-gate-relaxed_struct_unsize.rs:8:34 | ||
| | ||
LL | let y: &A<[u32; 1], [u32]> = &x; | ||
| ------------------- ^^ expected slice `[u32]`, found array `[u32; 1]` | ||
| | | ||
| expected due to this | ||
| | ||
= note: expected reference `&A<[u32; 1], [u32]>` | ||
found reference `&A<[u32; 1], [u32; 1]>` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0308`. |
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