rust/tests/ui/diagnostic-width/long-E0618.rs

13 lines
278 B
Rust

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