We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01d6ed5 commit 626818fCopy full SHA for 626818f
src/librustc_passes/ast_validation.rs
@@ -175,7 +175,8 @@ impl<'a> Visitor<'a> for AstValidator<'a> {
175
ExprKind::ObsoleteInPlace(..) => {
176
self.err_handler()
177
.struct_span_err(expr.span, "emplacement syntax is obsolete (for now, anyway)")
178
- .note("for more information, see <https://github.com/rust-lang/rust/issues/27779#issuecomment-378416911>")
+ .note("for more information, see \
179
+ <https://github.com/rust-lang/rust/issues/27779#issuecomment-378416911>")
180
.emit();
181
}
182
_ => {}
0 commit comments