Open
Description
With source code with a long line (64 columns) but that is less than the chosen width (80 columns):
fn main() {
a_very_long_function_name_that_pushes(and_then_an_argument);
}
fn a_very_long_function_name_that_pushes<T>(_: T) {}
The error message produced by rustc
exceeds (90 columns) the width:
% rustc +nightly long.rs -Z terminal-width=80
error[E0425]: cannot find value `and_then_an_argument` in this scope
--> long.rs:2:43
|
2 | a_very_long_function_name_that_pushes(and_then_an_argument);
| ^^^^^^^^^^^^^^^^^^^^ not found in this scope
/cc #84673