blob: 926f12911c52a521c9f1e070a787942a7f462797 [file] [log] [blame]
// ignore-x86 FIXME: missing sysroot spans (#53081)
// error-pattern: reached the type-length limit while instantiating
// Test that the type length limit can be changed.
#![allow(dead_code)]
#![type_length_limit="256"]
macro_rules! link {
($id:ident, $t:ty) => {
pub type $id = ($t, $t, $t);
}
}
link! { A, B }
link! { B, C }
link! { C, D }
link! { D, E }
link! { E, F }
link! { F, G }
pub struct G;
fn main() {
drop::<Option<A>>(None);
}