unstable-book: Add ignore to abi_efiapi example code

This example doesn't compile on targets that don't support UEFI, as
reported here:
https://github.com/rust-lang/rust/pull/104793#issuecomment-1339783727
This commit is contained in:
Nicholas Bishop 2022-12-06 14:22:56 -05:00
parent e60fbaf4ce
commit bc38c2ae67

View File

@ -12,7 +12,7 @@ Specification].
Example:
```rust
```rust,ignore (not-all-targets-support-uefi)
#![feature(abi_efiapi)]
extern "efiapi" { fn f1(); }