From a0ea35116b352c194b0f7745812efe36cef752b4 Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Wed, 14 Oct 2020 14:44:44 +0200 Subject: [PATCH] Update src/doc/unstable-book/src/compiler-flags/codegen-backend.md --- src/doc/unstable-book/src/compiler-flags/codegen-backend.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/unstable-book/src/compiler-flags/codegen-backend.md b/src/doc/unstable-book/src/compiler-flags/codegen-backend.md index 28f173cb0f3..efccff42caa 100644 --- a/src/doc/unstable-book/src/compiler-flags/codegen-backend.md +++ b/src/doc/unstable-book/src/compiler-flags/codegen-backend.md @@ -12,7 +12,7 @@ backend. The library must contain a function named `__rustc_codegen_backend` with a signature of `fn() -> Box`. ## Example -```rust +```rust,ignore use rustc_codegen_ssa::traits::CodegenBackend; struct MyBackend;