about summary refs log tree commit diff
path: root/tests/ui/diagnostic-width/long-E0618.rs
blob: 247061d17f8365c32cfa10e60552771c608b589c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ compile-flags: --diagnostic-width=60 -Zwrite-long-types-to-disk=yes
//@ dont-require-annotations: NOTE

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) { //~ NOTE `x` has type `(...
    x(); //~ ERROR expected function, found `(...
}

fn main() {}