mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-30 04:56:25 +03:00
Add a regression test for #32498
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// run-pass
|
||||
#![allow(dead_code)]
|
||||
|
||||
// Making sure that no overflow occurs.
|
||||
|
||||
struct L<T> {
|
||||
n: Option<T>,
|
||||
}
|
||||
type L8<T> = L<L<L<L<L<L<L<L<T>>>>>>>>;
|
||||
type L64<T> = L8<L8<L8<L8<T>>>>;
|
||||
|
||||
fn main() {
|
||||
use std::mem::size_of;
|
||||
assert_eq!(size_of::<L64<L64<()>>>(), 1);
|
||||
assert_eq!(size_of::<L<L64<L64<()>>>>(), 1);
|
||||
}
|
||||
Reference in New Issue
Block a user