1
Fork 0

normalize use of backticks in compiler messages for libsyntax/feature_gate

https://github.com/rust-lang/rust/issues/60532
This commit is contained in:
Samy Kacimi 2019-07-09 11:32:08 +02:00
parent 909f5a0494
commit 41e71b0c93
No known key found for this signature in database
GPG key ID: E2294E922F4C56E5
221 changed files with 693 additions and 693 deletions

View file

@ -5,7 +5,7 @@
use core::alloc::Layout;
#[alloc_error_handler] //~ ERROR #[alloc_error_handler] is an unstable feature
#[alloc_error_handler] //~ ERROR `#[alloc_error_handler]` is an unstable feature
fn oom(info: Layout) -> ! {
loop {}
}