blob: 5e8b3324dd17deaf5d393e7f7ca5ac1d29445b92 [file] [log] [blame]
//@ compile-flags: --diagnostic-width=60 -Zwrite-long-types-to-disk=yes
type A = (i32, i32, i32, i32);
type B = (A, A, A, A);
type C = (B, B, B, B);
type D = (C, C, C, C);
fn foo(x: D) {
*x; //~ ERROR type `(...
}
fn main() {}