We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfb8cbe commit 201fc48Copy full SHA for 201fc48
src/librustc_passes/ast_validation.rs
@@ -177,7 +177,8 @@ impl<'a> Visitor<'a> for AstValidator<'a> {
177
ExprKind::ObsoleteInPlace(..) => {
178
self.err_handler()
179
.struct_span_err(expr.span, "emplacement syntax is obsolete (for now, anyway)")
180
- .note("for more information, see <https://github.com/rust-lang/rust/issues/27779#issuecomment-378416911>")
+ .note("for more information, see \
181
+ <https://github.com/rust-lang/rust/issues/27779#issuecomment-378416911>")
182
.emit();
183
}
184
_ => {}
0 commit comments