rust/tests/ui/unsized/unchanged-param.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
378 B
Rust
Raw Normal View History

2021-01-05 15:33:10 +00:00
//@ run-pass
// Test that we allow unsizing even if there is an unchanged param in the
// field getting unsized.
struct A<T, U: ?Sized + 'static>(#[allow(dead_code)] T, B<T, U>);
struct B<T, U: ?Sized>(#[allow(dead_code)] T, U);
2021-01-05 15:33:10 +00:00
fn main() {
let x: A<[u32; 1], [u32; 1]> = A([0; 1], B([0; 1], [0; 1]));
let y: &A<[u32; 1], [u32]> = &x;
assert_eq!(y.1.1.len(), 1);
}