We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a6b91c commit bfe5d97Copy full SHA for bfe5d97
src/librustc_errors/annotate_rs_emitter.rs
@@ -206,7 +206,7 @@ impl AnnotateRsEmitterWriter {
206
// FIXME(#59346): Figure out if we can _always_ print to stderr or not.
207
// `emitter.rs` has the `Destination` enum that lists various possible output
208
// destinations.
209
- eprint!("{}", dlf.format(&dl));
+ eprintln!("{}", dlf.format(&dl));
210
};
211
}
212
src/test/ui/annotate-snippet/missing-type.stderr
@@ -3,4 +3,4 @@ error[E0412]: cannot find type `Iter` in this scope
3
|
4
4 | let x: Iter;
5
| ^^^^ not found in this scope
6
- |
+ |
0 commit comments